public function testApplyStrategiesNonExistentConfiguration() {
		$strategy = new MockStrategy();
		$this->expectException('Configuration non_existent_config has not been defined');
		$strategy::applyStrategies('method', 'non_existent_config', null);
	}