public function testAutomaticLoad() {
$filter = $this
->getMock('Assetic\\Filter\\FilterInterface');
$filter
->expects($this
->once())
->method('filterLoad');
$asset = new StringAsset('foo', array(
$filter,
));
$asset
->dump();
}