Exemple #1
0
 public function testNotNull()
 {
     $this->assertTrue(Utils::notNull(1));
     $this->assertTrue(Utils::notNull(0));
     $this->assertTrue(Utils::notNull(true));
     $this->assertTrue(Utils::notNull(false));
     $this->assertFalse(Utils::notNull(null));
 }