Extends
lithium\test\UnitSource
public function testNonExistentStrategyConfiguration() {
$strategy = new MockStrategy();
$this->expectException("Configuration `non_existent_config` has not been defined.");
$result = $strategy::strategies('non_existent_config');
$this->assertNull($result);
}