Ejemplo n.º 1
0
 public function testNotValidInput()
 {
     $pullStream = new PullStream();
     $this->assertFalse($pullStream->valid());
     $pullStream = new PullStream();
     $pullStream->setIsAudio(1);
     $this->assertFalse($pullStream->valid());
 }