Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jul 17th, 2012  |  syntax: None  |  size: 0.48 KB  |  hits: 10  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. <?php
  2. class SimpleFormTests extends WebTestCase {
  3.  
  4.    function setUp() {
  5.                 ....
  6.    }
  7.  
  8.    function tearDown() {
  9.                 ....
  10.    }
  11.  
  12.    function testLogin() {
  13.         $this->get('http://www.my-site.com/');
  14.         $this->assertField('Username', 'username');
  15.         $this->setField('Username', 'John');
  16.         $this->assertField('Password', 'passsword');
  17.         $this->setField('Password', '123456');
  18.         $this->clickSubmit('Login');
  19.     }
  20. }
  21. ?>