Tests that an exception is thrown when a library is added which could not be found.

Returns

void

Source

						public function testAddInvalidLibrary() {
		$this->expectException("Library `invalid_foo` not found.");
		Libraries::add('invalid_foo');
	}