mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-01-11 09:48:40 +00:00
36 lines
785 B
PHP
36 lines
785 B
PHP
<?php
|
|
/**
|
|
* Orange Management
|
|
*
|
|
* PHP Version 7.4
|
|
*
|
|
* @package tests
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 1.0
|
|
* @version 1.0.0
|
|
* @link https://orange-management.org
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
namespace phpOMS\Algorithm\CoinMatching;
|
|
|
|
use phpOMS\Algorithm\CoinMatching\MinimumCoinProblem;
|
|
|
|
require_once __DIR__ . '/../../Autoloader.php';
|
|
|
|
/**
|
|
* @testdox phpOMS\Algorithm\CoinMatching\MinimumCoinProblem: Test coin matching a value problem
|
|
*
|
|
* @internal
|
|
*/
|
|
class MinimumCoinProblemTest extends \PHPUnit\Framework\TestCase
|
|
{
|
|
public function testMinimumCoins() : void
|
|
{
|
|
self::assertEquals(
|
|
[],
|
|
\array_diff_key([6, 6, 5], MinimumCoinProblem::getMinimumCoinsForValueI([9, 6, 5, 6, 1], 17))
|
|
);
|
|
}
|
|
}
|