aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShadify <boomkin1234@hotmail.com>2017-12-01 09:59:15 +0100
committerShadify <boomkin1234@hotmail.com>2017-12-01 09:59:15 +0100
commit8c514c01aa4d620aea084beca3f4808270671f7e (patch)
tree9deb21d647dae73e6c954b65ab3a4cebb9a3ddc8 /tests/AppBundle/Controller/MathControllerTest.php
parent0f5659465584b5ef9fcbec26ea695fe3f1af9012 (diff)
wrote test case + cleaned up main page
Diffstat (limited to 'tests/AppBundle/Controller/MathControllerTest.php')
-rw-r--r--tests/AppBundle/Controller/MathControllerTest.php19
1 files changed, 19 insertions, 0 deletions
diff --git a/tests/AppBundle/Controller/MathControllerTest.php b/tests/AppBundle/Controller/MathControllerTest.php
new file mode 100644
index 0000000..523f9e5
--- /dev/null
+++ b/tests/AppBundle/Controller/MathControllerTest.php
@@ -0,0 +1,19 @@
+<?php
+
+namespace Tests\AppBundle\Controller;
+
+use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;
+
+class MathControllerTest extends WebTestCase
+{
+ public function testAQIMath()
+ {
+ $CO = 1;
+ $bpLowCO = 0;
+ $bpHiCO = 4;
+ $bpLowIndex = 0;
+ $bpHiIndex = 50;
+ $AQI = ((50 - 0)/(4 - 0))*(1-0)+0;
+ $this->assertEquals(12.5, $AQI);
+ }
+} \ No newline at end of file