Exemplo n.º 1
0
 /**
  * @test
  */
 public function fireまでの通し確認()
 {
     $expected = 1264;
     $mock = m::mock('SplFileObject', [__DIR__ . '/template.php', 'w']);
     $mock->shouldReceive('fwrite')->once()->andReturn($expected);
     $Gen = new Generator($mock);
     $Gen->setContents('FooBarBaxQux');
     $actual = $Gen->fire();
     $this->assertSame($expected, $actual);
 }