Example #1
0
 /**
  * コンストラクタの引数と等しい時間オブジェクトを返すことを確認します.
  * @covers Peach\DT\FormatWrapper::getOriginal
  * @covers Peach\DT\FormatWrapper::__construct
  */
 public function testGetOriginal()
 {
     $original = new SimpleFormat("Y.n.d");
     $f = new FormatWrapper($original);
     $this->assertSame($original, $f->getOriginal());
 }