コード例 #1
0
 public function testToReal()
 {
     $integer = new Integer(5);
     $nativeReal = new Real(5);
     $real = $integer->toReal();
     $this->assertTrue($real->sameValueAs($nativeReal));
 }