replacePlaceholders() public method

public replacePlaceholders ( $replacement )
コード例 #1
0
ファイル: ClassStubTest.php プロジェクト: letsdrink/ouzo
 /**
  * @test
  */
 public function shouldReplacePlaceholderInStubFile()
 {
     //given
     $classStub = new ClassStub();
     //when
     $classStub->replacePlaceholders(array('class' => 'TestClassName', 'fields' => 'fieldA, fieldB'));
     //then
     $this->assertContains('TestClassName', $classStub->contents());
     $this->assertContains('fieldA, fieldB', $classStub->contents());
 }