Your IP : 216.73.216.79


Current Path : /var/www/html/dyna-hr/vendor/codeception/base/tests/data/
Upload File :
Current File : /var/www/html/dyna-hr/vendor/codeception/base/tests/data/SimpleNamespacedTest.php

<?php
/**
 * Also test multiple namespaces/classes per single file.
 */
namespace SimpleA {
    class SimpleTest extends \Codeception\Test\Unit
    {

        public function testFoo() {
            return true;
        }

        public function testBar() {
            return true;
        }

    }
}

namespace SimpleB {
    class SimpleTest extends \Codeception\Test\Unit
    {
        public function testBaz() {
            return true;
        }

    }
}