Hi,
I try to create my first unit test and I have problem in create model in test. I did everythink step by step from documentation https://docs.phalcon.io/pl/latest/reference/unit-testing.html and while running tests seems to works poperly.
But if I put following code:
public function testTestCase()
{
$object = new ExampleModel;
}
I'm getting an error
Fatal error: Class 'ExampleModel' not found in (...)\Project\tests\testsTestUnitTest.php on line 13
ExampleModel is in models dir and working good in application.