Query/tests/simpletest/test/support/test1.php

8 lines
110 B
PHP
Raw Normal View History

2012-03-22 15:17:12 -04:00
<?php
class test1 extends UnitTestCase {
function test_pass(){
$this->assertEqual(3,1+2, "pass1");
}
}
?>