Tester nechapu proc je vzdy ok?
- martin28
- Člen | 40
AHoj, omluva za tema do teto kategorie (tester nikdo nereaguje):-)
mam nasledujici kod
nakonci je assertovana vzdy chyba kdyz zapoznamkuji radek
$response = $presenter->run($request);
tak se to chova jak bych ocekaval, ale jinak ne? mam predstavu ze budu testovat dane html. muj kod je:
$presenterFactory = $this->container->getByType('Nette\Application\IPresenterFactory');
$presenter = $presenterFactory->createPresenter('Front:Cenik');
$presenter->autoCanonicalize = false;
$request = new \Nette\Application\Request('Front:Cenik', 'GET', array('action' => 'detail'));
$response = $presenter->run($request);
//
// Assert::type('Nette\Application\Responses\TextResponse', $response);
// Assert::type('Nette\Bridges\ApplicationLatte\Template', $response->getSource());
//
// $html = (string) $response->getSource();
// $dom = Tester\DomQuery::fromHtml($html);
//
// Assert::false( $dom->has('</body>') );
Assert::false(true, 'chyba');
Dik martin