Odyssey
cuDataModelTest.php
1 <?php
2 
3 use PHPUnit\Framework\TestCase;
4 
5 class DataModelTests extends TestCase
6 {
7  public function setUp() {
8  //require 'library/cuDataModel.i';
9  //require 'banking/app/hcuLogin.prg';
10  }
11  public function test_here() {
12  // require 'banking/app/hcuLogin.prg';
13  }
14 
15 /*
16  public function test_missing_key() {
17  $foo = array(
18  "a" => "AAA"
19  );
20  $foo['not_there'];
21  $foo['also_not_there'];
22  }
23 */
24 }
25