We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 04b61ca commit 41d1772Copy full SHA for 41d1772
tests/ExampleTest.php
@@ -0,0 +1,10 @@
1
+<?php
2
+
3
+class ExampleTest extends TestCase
4
+{
5
+ /** @test */
6
+ public function it_calculates_2_on_2()
7
+ {
8
+ $this->assertEquals(4, 2*2);
9
+ }
10
+}
tests/TestCase.php
@@ -0,0 +1,5 @@
+abstract class TestCase extends PHPUnit_Framework_TestCase
0 commit comments