Skip to content

Commit

Permalink
Diophantine Equation #17
Browse files Browse the repository at this point in the history
  • Loading branch information
ReenExe committed Mar 13, 2017
1 parent d8eca46 commit b886275
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions tests/DiophEquaTest.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<?php

namespace ReenExe\CodewarsPHP\Tests;

use PHPUnit\Framework\TestCase;

class DiophEquaTest extends TestCase
{
public function testBasics()
{
$this->assertSame(solequa(5), [[3, 1]]);
$this->assertSame(solequa(9005), [[4503, 2251], [903, 449]]);
}
}

0 comments on commit b886275

Please sign in to comment.