MiniAsset\Test\TestCase\File\TargetTest::setUp PHP Method

setUp() public method

public setUp ( )
    public function setUp()
    {
        parent::setUp();
        $this->compiler = $this->getMockBuilder('MiniAsset\\Output\\CompilerInterface')->getMock();
        $files = [new Local(APP . 'js/classes/base_class_two.js')];
        $this->asset = new AssetTarget(TMP . 'all.css', $files);
        $this->target = new Target($this->asset, $this->compiler);
    }