PHP Classes

File: test/Test.php

Recommend this page to a friend!
  Classes of ryan silalahi   Simple Genetic Algorithm   test/Test.php   Download  
File: test/Test.php
Role: Unit test script
Content type: text/plain
Description: Unit test script
Class: Simple Genetic Algorithm
Implement genetic algorithm to optimize population
Author: By
Last change:
Date: 9 years ago
Size: 221 bytes
 

Contents

Class file image Download
<?php

// require __DIR__ . '/../vendor/autoload.php';

class Test extends PHPUnit_Framework_TestCase
{
    public function
test()
    {
       
$stack = array();
       
$this->assertEquals(0, count($stack));
    }
}
?>