示例#1
0
 /**
  * @covers PsImg::hasMime
  */
 public function testHasMime()
 {
     $this->assertTrue(PsImg::hasMime('image/png'));
     $this->assertTrue(PsImg::hasMime('image/PNG'));
     $this->assertTrue(PsImg::hasMime('image/gif'));
     $this->assertTrue(PsImg::hasMime('IMAGE/gif'));
     $this->assertTrue(PsImg::hasMime('image/jpeg'));
     $this->assertFalse(PsImg::hasMime(null));
     $this->assertFalse(PsImg::hasMime('image/jpg'));
     $this->assertFalse(PsImg::hasMime('image//jpg'));
     $this->assertFalse(PsImg::hasMime(self::NOT_ALLOWED_STR));
 }