Skip to content
Snippets Groups Projects
Select Git revision
16 results Searching

Unit.php

Blame
  • Camille Simiand's avatar
    Camille Simiand authored
    Codeception will help us write unit, integrational, functional and
    acceptance testing.
    
    To run codeception tests: php vendor/bin/codecept run
    To run phpunit tests: php ./vendor/bin/phpunit
    3890b8d6
    History
    Unit.php 189 B
    <?php
    namespace App\Tests\Helper;
    
    // here you can define custom actions
    // all public methods declared in helper class will be available in $I
    
    class Unit extends \Codeception\Module
    {
    
    }