コード例 #1
0
ファイル: ConfigTest.php プロジェクト: mvc5/mvc5-tests
 /**
  *
  */
 function test_clone_object_scoped_different_object()
 {
     $plugins = new App();
     $config = new Config($plugins);
     $plugins->scope(new \stdClass());
     $this->assertEquals(clone $config, $config);
 }