Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- class IndexControllerTest extends Zend_Test_PHPUnit_ControllerTestCase
- {
- public function setUp()
- {
- $this->bootstrap = new Zend_Application(APPLICATION_ENV, APPLICATION_PATH . '/configs/application.ini');
- parent::setUp();
- }
- public function testColumnarLayout()
- {
- $this->assertQuery('div#columnA');
- $this->assertQuery('div#columnB');
- $this->assertQuery('div#columnC');
- $this->assertQueryCountMin('div.col', 3);
- $this->assertQueryCountMax('div.col', 3);
- }
- public function testLitePage() // no graphics allowed
- {
- $this->assertNotQueryContentContains('img');
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement