mirror of
https://github.com/Llewellynvdm/php-ml.git
synced 2024-11-11 16:15:50 +00:00
3ac658c397
* Add new cs-fixer rules and run them * Do not align double arrows/equals
36 lines
897 B
PHP
36 lines
897 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace tests;
|
|
|
|
use Phpml\ModelManager;
|
|
use Phpml\Regression\LeastSquares;
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
class ModelManagerTest extends TestCase
|
|
{
|
|
public function testSaveAndRestore()
|
|
{
|
|
$filename = uniqid();
|
|
$filepath = sys_get_temp_dir().DIRECTORY_SEPARATOR.$filename;
|
|
|
|
$estimator = new LeastSquares();
|
|
$modelManager = new ModelManager();
|
|
$modelManager->saveToFile($estimator, $filepath);
|
|
|
|
$restored = $modelManager->restoreFromFile($filepath);
|
|
$this->assertEquals($estimator, $restored);
|
|
}
|
|
|
|
/**
|
|
* @expectedException \Phpml\Exception\FileException
|
|
*/
|
|
public function testRestoreWrongFile()
|
|
{
|
|
$filepath = sys_get_temp_dir().DIRECTORY_SEPARATOR.'unexisting';
|
|
$modelManager = new ModelManager();
|
|
$modelManager->restoreFromFile($filepath);
|
|
}
|
|
}
|