You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
it would be convenient for people like me who have no memory or for programmers who want to get started quickly, having a command that generates a test class with everything needed to start.
which would contain the test class and a basic test just to check that the test run well.
Like this :
<?phpnamespaceAppBundle\Tests\Units\DataTransformer;
useatoum;
class AwesomeDataTransformer extends atoum
{
/** * this test is generated by atoum command * */publicfunctiontestBasic()
{
$this
->if($this->newTestedInstance())
->then
->object($this->testedInstance)
->isTestedInstance();
}
There generators in Symfony and that makes life easier sometimes.
I think the developers using Symfony would be more enthusiastic if can they could play quickly with atoum.
The text was updated successfully, but these errors were encountered:
it would be convenient for people like me who have no memory or for programmers who want to get started quickly, having a command that generates a test class with everything needed to start.
For example :
With the command :
it would generate a file :
which would contain the test class and a basic test just to check that the test run well.
Like this :
There generators in Symfony and that makes life easier sometimes.
I think the developers using Symfony would be more enthusiastic if can they could play quickly with atoum.
The text was updated successfully, but these errors were encountered: