Skip to content

Commit

Permalink
Add tests for codacy,
Browse files Browse the repository at this point in the history
  • Loading branch information
ushios committed Nov 10, 2015
1 parent 2299ec4 commit 8b39905
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions tests/Ushios/Shape/Calculator/ScaleTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ class CalculatorTest extends \PHPUnit_Framework_TestCase
public function testCreateInstance()
{
$scale = new Scale();
$this->assertNotNull($scale);
}

public function testSquareAndSquare()
Expand Down
1 change: 1 addition & 0 deletions tests/Ushios/Shape/RectangleTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ class RectangleTest extends \PHPUnit_Framework_TestCase
public function testMakeInstance()
{
$rectangle = new Rectangle(200, 200);
$this->assertNotNull($rectangle);
}

public function testGetterSetter()
Expand Down
1 change: 1 addition & 0 deletions tests/Ushios/Shape/SquareTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ class SquareTest extends \PHPUnit_Framework_TestCase
public function testMakeInstance()
{
$square = new Square();
$this->assertNotNull($square);
}

public function testGetterSetter()
Expand Down

0 comments on commit 8b39905

Please sign in to comment.