Extends
lithium\test\Unit
Tests that an exception is thrown when a library is added which could not be found.
Returns
voidSource
public function testAddInvalidLibrary() {
$this->expectException("Library `invalid_foo` not found.");
Libraries::add('invalid_foo');
}