From 8c4abc3c90185b386390a6bab6f763fd9ce1e689 Mon Sep 17 00:00:00 2001 From: Pepe Doval Date: Fri, 2 Dec 2011 12:24:50 +0100 Subject: [PATCH] starting point for php/phpunit --- starting_points/php/phpunit.xml | 9 +++++++++ starting_points/php/src/GameOfLife.php | 3 +++ starting_points/php/test/GameOfLifeTest.php | 11 +++++++++++ 3 files changed, 23 insertions(+) create mode 100644 starting_points/php/phpunit.xml create mode 100644 starting_points/php/src/GameOfLife.php create mode 100644 starting_points/php/test/GameOfLifeTest.php diff --git a/starting_points/php/phpunit.xml b/starting_points/php/phpunit.xml new file mode 100644 index 0000000..537626d --- /dev/null +++ b/starting_points/php/phpunit.xml @@ -0,0 +1,9 @@ + + + + + test + + + + diff --git a/starting_points/php/src/GameOfLife.php b/starting_points/php/src/GameOfLife.php new file mode 100644 index 0000000..ca2543f --- /dev/null +++ b/starting_points/php/src/GameOfLife.php @@ -0,0 +1,3 @@ +assertFalse(true); + } + +}