mirror of
https://github.com/TheAlgorithms/PHP.git
synced 2025-01-17 23:28:14 +01:00
53 lines
1.2 KiB
PHP
53 lines
1.2 KiB
PHP
<?php
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
require_once __DIR__.'/../vendor/autoload.php';
|
|
require_once __DIR__.'/../ProjectEuler/Problem1.php';
|
|
require_once __DIR__.'/../ProjectEuler/Problem2.php';
|
|
require_once __DIR__.'/../ProjectEuler/Problem3.php';
|
|
require_once __DIR__.'/../ProjectEuler/Problem5.php';
|
|
require_once __DIR__.'/../ProjectEuler/Problem6.php';
|
|
require_once __DIR__.'/../ProjectEuler/Problem7.php';
|
|
require_once __DIR__.'/../ProjectEuler/Problem9.php';
|
|
|
|
class ProjectEulerTest extends TestCase
|
|
{
|
|
public function testProblem1(): void
|
|
{
|
|
$this->assertSame(233168, problem1a());
|
|
$this->assertSame(233168, problem1b());
|
|
}
|
|
|
|
public function testProblem2(): void
|
|
{
|
|
$this->assertSame(4613732, problem2());
|
|
}
|
|
|
|
public function testProblem3(): void
|
|
{
|
|
$this->assertSame(6857, problem3());
|
|
}
|
|
|
|
public function testProblem5(): void
|
|
{
|
|
$this->assertSame(232792560, problem5());
|
|
}
|
|
|
|
public function testProblem6(): void
|
|
{
|
|
$this->assertSame(25164150, problem6());
|
|
}
|
|
|
|
public function testProblem7(): void
|
|
{
|
|
$this->assertSame(104743, problem7());
|
|
}
|
|
|
|
public function testProblem9(): void
|
|
{
|
|
$this->assertSame(31875000, problem9());
|
|
}
|
|
|
|
}
|