diff --git a/tests/StringWrapperTest.php b/tests/StringWrapperTest.php new file mode 100644 index 0000000..7d7c17b --- /dev/null +++ b/tests/StringWrapperTest.php @@ -0,0 +1,26 @@ +wrapper = new class { + use StringWrapper; + }; + } + + public function testString() + { + $str = $this->wrapper->string('foo'); + $this->assertInstanceOf(StringType::class, $str); + } + +} \ No newline at end of file