assertEquals($b->lastModified, filemtime($file1), 'single file path'); $b = new Minify_Build(array($file1, $file2)); $this->assertEquals($maxTime, $b->lastModified, 'multiple file paths'); $b = new Minify_Build(array($file1, new Minify_Source(array('filepath' => $file2)))); $this->assertEquals($maxTime, $b->lastModified, 'file path and a Minify_Source'); $this->assertEquals($b->uri('/path'), "/path?{$maxTime}", 'uri() with no querystring'); $this->assertEquals($b->uri('/path?hello'), "/path?hello&{$maxTime}", 'uri() with existing querystring'); } }