Esempio n. 1
0
 /**
  * @expectedException \Skeleton\Exceptions\ImplementerNotDefinedException
  */
 public function test_clear_ValueReset()
 {
     $skeleton = new Skeleton();
     $testSkeleton = new UnitTestSkeleton($skeleton);
     $testSkeleton->override('a', 'b');
     $testSkeleton->clear();
     $testSkeleton->get('a');
 }
Esempio n. 2
0
 public static function reset()
 {
     self::$testMap->clear();
 }