diff --git a/tests/Analyzers/SpecializableAnalyzerTest.php b/tests/Analyzers/SpecializableAnalyzerTest.php new file mode 100644 index 00000000..42ad2224 --- /dev/null +++ b/tests/Analyzers/SpecializableAnalyzerTest.php @@ -0,0 +1,23 @@ +makePartial(); + $image = Mockery::mock(ImageInterface::class); + $image->shouldReceive('analyze')->andReturn('test'); + + $result = $analyzer->analyze($image); + $this->assertEquals('test', $result); + } +}