예제 #1
0
 /**
  * Test transform to string
  */
 public function testIdentical()
 {
     $this->assertSame(null, Transform::identical(null));
     $this->assertSame(false, Transform::identical(false));
     $this->assertSame(0, Transform::identical(0));
     $this->assertSame('0', Transform::identical('0'));
 }