Skip to content

Commit

Permalink
add 2 tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
ushios committed Oct 19, 2015
1 parent f0cd4bb commit 846a869
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions tests/Ushios/Shape/Calculator/ScaleTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,15 @@ public function testTallAndTall()
);
}

public function testTallAndSuperTall()
{
$this->scaleCompare(
100, 400,
1, 800,
100, 80000
);
}

public function testTallAndTallNoScale()
{
$this->scaleCompare(
Expand All @@ -65,6 +74,15 @@ public function testWidthAndWidth()
);
}

public function testWidthAndSuperWidth()
{
$this->scaleCompare(
400, 200,
800, 100,
1600, 200
);
}

public function testWidthAndWidthNoScale()
{
$this->scaleCompare(
Expand Down

0 comments on commit 846a869

Please sign in to comment.