示例#1
0
 /**
  * @test
  */
 public function hasFakeFrontEndIsFalseAfterCreateAndDiscardFakeFrontEnd()
 {
     $this->subject->createFrontEndPage();
     $this->subject->createFakeFrontEnd();
     $this->subject->discardFakeFrontEnd();
     self::assertFalse($this->subject->hasFakeFrontEnd());
 }
 /**
  * @test
  */
 public function hasFakeFrontEndIsFalseAfterCreateAndDiscardFakeFrontEnd()
 {
     $this->fixture->createFakeFrontEnd();
     $this->fixture->discardFakeFrontEnd();
     $this->assertFalse($this->fixture->hasFakeFrontEnd());
 }