예제 #1
0
파일: BoxTest.php 프로젝트: BeerMan88/yii
 public function testShouldIncreaseBox()
 {
     $box = new Box(10, 20);
     $this->assertEquals(new Box(15, 25), $box->increase(5));
 }
예제 #2
0
 /**
  * {@inheritdoc}
  */
 public function increase($size)
 {
     $box = $this->box->increase($size);
     return new self($box->getWidth(), $box->getHeight());
 }