PHPUnit\Runner\CleverAndSmart\Unit\Storage\Sqlite3StorageTest::setUp PHP Method

setUp() public method

public setUp ( )
    public function setUp()
    {
        $this->file = __DIR__ . '/.phpunit-cas-test.db';
        $this->reset();
        $this->storage = new Sqlite3Storage($this->file);
        $this->test1 = new Test();
        $this->test1->setName('testMethod1');
        $this->test2 = new Test();
        $this->test2->setName('testMethod2');
        $this->run1 = new Run();
        $this->run2 = new Run();
    }