Skip to content

Commit 41d1772

Browse files
committed
IHF: Initial dummy tests added.
1 parent 04b61ca commit 41d1772

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed

tests/ExampleTest.php

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<?php
2+
3+
abstract class TestCase extends PHPUnit_Framework_TestCase
4+
{
5+
}

0 commit comments

Comments
 (0)