All tests now extend TestCase

This commit is contained in:
Alexander Liljengård
2016-05-24 14:06:43 +02:00
parent 983c6dc487
commit 9f97eb1653
11 changed files with 30 additions and 24 deletions

View File

@ -1,8 +1,10 @@
<?php namespace Moserware\Skills\Tests\Numerics;
use \PHPUnit_Framework_TestCase;
class GaussianDistributionTest extends PHPUnit_Framework_TestCase
use Moserware\Numerics\GaussianDistribution;
use Moserware\Skills\Tests\TestCase;
class GaussianDistributionTest extends TestCase
{
const ERROR_TOLERANCE = 0.000001;