Created
April 4, 2011 02:13
-
-
Save avalanche123/901047 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class MyClass | |
{ | |
private $condition1; | |
private $condition2; | |
public function __construct($condition1, $condition2) | |
{ | |
$this->condition1 = $condition1; | |
$this->condition2 = $condition2; | |
} | |
public function doSomething() | |
{ | |
if ($this->condition1) { | |
$this->executeOption1(); | |
} | |
if ($this->condition2) { | |
$this->executeOption2(); | |
} | |
return $result; | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class MyClassTest extends PHPUnit_Framework_TestCase | |
{ | |
public function testCondition1() | |
{ | |
$object = new MyClass(true, false); | |
$this->assertOption1Executed($object); | |
} | |
public function testCondition2() | |
{ | |
$object = new MyClass(false, true); | |
$this->assertOption2Executed($object); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment