コード例 #1
0
ファイル: LegacyTest.php プロジェクト: mhujer/steward
 public function setUp()
 {
     $this->testCase = $this->getMockBuilder(AbstractTestCase::class)->setMethods(['getName'])->getMock();
     $this->testCase->expects($this->any())->method('getName')->willReturn('testFooMethod');
     ConfigHelper::setEnvironmentVariables(ConfigHelper::getDummyConfig());
     ConfigHelper::unsetConfigInstance();
 }