Exemplo n.º 1
0
 public function testConstructor()
 {
     $integer = new Integer(7);
     $this->assertSame(7, $integer->getValue());
     $this->setExpectedException('BestServedCold\\PhalueObjects\\Exception\\InvalidTypeException');
     new Integer('this is the wrong type');
 }