AsseticBundleTest\Service::setUp PHP Method

setUp() protected method

This method is called before a test is executed.
protected setUp ( )
    protected function setUp()
    {
        $this->defaultOptions = ['webPath' => TEST_PUBLIC_DIR, 'routes' => ['home' => ['@base_css', '@base_js']], 'modules' => ['test_application' => ['root_path' => TEST_ASSETS_DIR, 'collections' => ['base_css' => ['assets' => ['css/global.css'], 'filters' => ['CssRewriteFilter' => ['name' => 'Assetic\\Filter\\CssRewriteFilter']], 'options' => []], 'base_js' => ['assets' => ['js/test.js']], 'base_images' => ['assets' => ['images/*.png'], 'options' => ['move_raw' => true]], 'base_fonts' => ['assets' => ['fonts/*'], 'options' => ['disable_source_path' => true, 'move_raw' => true, 'targetPath' => 'public2/fonts/test']]]]]];
        $this->configuration = new AsseticBundle\Configuration($this->defaultOptions);
        $this->object = new AsseticBundle\Service($this->configuration);
    }