Exemple #1
0
 public function testSetMethodsShouldReturnSelfInstance()
 {
     self::assertInstanceOf('\\Nano\\Controller\\Response', $this->response->setBody(''));
     self::assertInstanceOf('\\Nano\\Controller\\Response', $this->response->appendToBody(''));
     self::assertInstanceOf('\\Nano\\Controller\\Response', $this->response->setVersion(''));
     self::assertInstanceOf('\\Nano\\Controller\\Response', $this->response->setStatus(1));
     self::assertInstanceOf('\\Nano\\Controller\\Response', $this->response->addHeader('', ''));
     self::assertInstanceOf('\\Nano\\Controller\\Response', $this->response->addHeaders(array()));
 }