Package has been replaced by aedart/athenaeum
Various utilities for testing php code.
composer require aedart/testing
The UnitTestCase
is an extended version of \Codeception\TestCase\Test
, which automatically setups Faker
and closes down Mockery
once a test has been executed.
<?php
use Aedart\Testing\TestCases\Unit\UnitTestCase;
class MyUnitTest extends UnitTestCase
{
// ... Remaining not shown ... //
}
BSD-3-Clause, Read the LICENSE file included in this package