Пример #1
0
 public function testSetAndGetResponseWriter()
 {
     $query = new TestQuery();
     $query->setResponseWriter('phps');
     $this->assertEquals('phps', $query->getResponseWriter());
 }
Пример #2
0
 public function testSetAndGetTimeAllowed()
 {
     $query = new TestQuery();
     $query->setTimeAllowed(1200);
     $this->assertEquals(1200, $query->getTimeAllowed());
 }