Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
starting point for php/phpunit
  • Loading branch information
pepellou committed Dec 2, 2011
1 parent eef09ed commit 8c4abc3
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 0 deletions.
9 changes: 9 additions & 0 deletions starting_points/php/phpunit.xml
@@ -0,0 +1,9 @@
<phpunit colors="true">
<testsuites>

<testsuite name="AllTests">
<directory>test</directory>
</testsuite>

</testsuites>
</phpunit>
3 changes: 3 additions & 0 deletions starting_points/php/src/GameOfLife.php
@@ -0,0 +1,3 @@
<?php

// Start your iteration here
11 changes: 11 additions & 0 deletions starting_points/php/test/GameOfLifeTest.php
@@ -0,0 +1,11 @@
<?php

require_once dirname(__FILE__).'/../src/GameOfLife.php';

class GameOfLifeTest extends PHPUnit_Framework_TestCase {

public function test_trueShouldBeTrue() {
$this->assertFalse(true);
}

}

0 comments on commit 8c4abc3

Please sign in to comment.