pickles/tests/classes/DynamicTest.php
Joshua Sherman 3fee938c2a Stubbed out and wrote some tests
Will code tests for the stub files in the AM.
2014-01-02 01:17:25 -05:00

81 lines
752 B
PHP

<?php
class DynamicTest extends PHPUnit_Framework_TestCase
{
public function testReferenceWithoutFailover()
{
}
public function testReferenceWithFailover()
{
}
public function testCSSWrongExtension()
{
}
public function testCSSErrorLESS()
{
}
public function testCSSErrorSASS()
{
}
public function testCSS()
{
}
public function testCSSWithLESS()
{
}
public function testCSSWithSASS()
{
}
public function testCSSUnableToMinify()
{
}
public function testCSSDoesNotExist()
{
}
public function testJSWrongExtension()
{
}
public function testJSUnableToMinify()
{
}
public function testJSDoesNotExist()
{
}
public function testJSInvalidLevel()
{
}
public function testJS()
{
}
}
?>