From 8758c352aca67dfa8eee9b808b5527e1472c6aca Mon Sep 17 00:00:00 2001 From: "rahul.raj" <64.rahulraj@gmail.com> Date: Thu, 20 Apr 2017 19:26:20 +0530 Subject: [PATCH 1/3] fix add test --- Test.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Test.php b/Test.php index 4b44aa0f9..39f6cff73 100644 --- a/Test.php +++ b/Test.php @@ -3,7 +3,7 @@ class Test extends PHPUnit_Framework_TestCase { public function testOnePlusOne() { - $this->assertEquals(1+1,1); + $this->assertEquals(1+1,2); } } From 18313d4d3911e9d930049569ffd3c04d4a434751 Mon Sep 17 00:00:00 2001 From: "rahul.raj" <64.rahulraj@gmail.com> Date: Thu, 20 Apr 2017 19:35:35 +0530 Subject: [PATCH 2/3] testing for fail --- Test.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Test.php b/Test.php index 39f6cff73..526bbaf2f 100644 --- a/Test.php +++ b/Test.php @@ -3,7 +3,7 @@ class Test extends PHPUnit_Framework_TestCase { public function testOnePlusOne() { - $this->assertEquals(1+1,2); + $this->assertEquals(1+1,5); } } From 601d666c112cc5f593cc8894c7025c2e2511015e Mon Sep 17 00:00:00 2001 From: "rahul.raj" <64.rahulraj@gmail.com> Date: Thu, 20 Apr 2017 19:42:56 +0530 Subject: [PATCH 3/3] fix again --- Test.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Test.php b/Test.php index 526bbaf2f..39f6cff73 100644 --- a/Test.php +++ b/Test.php @@ -3,7 +3,7 @@ class Test extends PHPUnit_Framework_TestCase { public function testOnePlusOne() { - $this->assertEquals(1+1,5); + $this->assertEquals(1+1,2); } }