8:30 - Offsite kickoff: Goals, Agenda, Work method
9:00 - The Way We Execute - Udi
10:45 - Break
11:00 - Session I - Udi
12:30 - Lunch
13:15 - Session II - Peleg
14:45 - Session III - Aviv
16:15 - Break
16:30 - Parking Lot
17:15 - Planning : Actions & Timeline
18:00 - Closing
Grunt
PhantomJS
SlimerJS
<?php
class StackTest extends PHPUnit_Framework_TestCase
{
public function testPushAndPop()
{
$stack = array();
$this->assertEquals(0, count($stack));
array_push($stack, 'foo');
$this->assertEquals('foo', $stack[count($stack)-1]);
$this->assertEquals(1, count($stack));
$this->assertEquals('foo', array_pop($stack));
$this->assertEquals(0, count($stack));
}
}
?>
<?php
require_once 'PHPUnit/Extensions/SeleniumTestCase.php';
class Example extends PHPUnit_Extensions_SeleniumTestCase
{
function setUp()
{
$this->setBrowser("*firefox");
$this->setBrowserUrl("http://www.google.com/");
}
function testMyTestCase()
{
$this->open("/");
$this->type("q", "selenium rc");
$this->click("btnG");
$this->waitForPageToLoad("30000");
$this->assertTrue($this->isTextPresent("Results * for selenium rc"));
}
}
?>