Fix case of more class checks.
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@10437 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
parent
32db1a5eb8
commit
182debe39a
7 changed files with 7 additions and 7 deletions
|
|
@ -4,7 +4,7 @@ require "tests.php4";
|
|||
require "arrays.php";
|
||||
|
||||
check::functions(array(fn_taking_arrays,newintpointer,setintfrompointer,getintfrompointer,array_pointer_func));
|
||||
check::classes(array(simplestruct,arraystruct,cartposedata_t));
|
||||
check::classes(array(arrays,SimpleStruct,ArrayStruct,CartPoseData_t));
|
||||
// No new vars
|
||||
check::globals(array());
|
||||
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ require "li_carrays.php";
|
|||
// No new functions
|
||||
check::functions(array(new_intarray,delete_intarray,intarray_getitem,intarray_setitem));
|
||||
// No new classes
|
||||
check::classes(array(doublearray));
|
||||
check::classes(array(doubleArray));
|
||||
// now new vars
|
||||
check::globals(array());
|
||||
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
require "tests.php4";
|
||||
require "rename_scope.php";
|
||||
|
||||
check::classes(array("interface_up","interface_bp","natural_up","natural_bp"));
|
||||
check::classes(array("rename_scope","Interface_UP","Interface_BP","Natural_UP","Natural_BP","Bucket"));
|
||||
|
||||
check::classmethods("Interface_UP",array("interface_up"));
|
||||
check::classmethods("Interface_BP",array("interface_bp"));
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
require "tests.php4";
|
||||
require "smart_pointer_rename.php";
|
||||
|
||||
check::classes(array("foo","bar"));
|
||||
check::classes(array("Foo","Bar"));
|
||||
check::classmethods("foo",array("foo","ftest1","ftest2"));
|
||||
check::classmethods("bar",array("__deref__","bar","test","ftest1","ftest2"));
|
||||
$foo=new foo();
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ require "template_arg_typename.php";
|
|||
// No new functions
|
||||
check::functions(array());
|
||||
// No new classes
|
||||
check::classes(array(unaryfunction_bool_bool,boolunaryfunction_bool));
|
||||
check::classes(array(UnaryFunction_bool_bool,BoolUnaryFunction_bool));
|
||||
$ufbb=new unaryfunction_bool_bool();
|
||||
check::is_a($ufbb,"unaryfunction_bool_bool");
|
||||
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
require "tests.php4";
|
||||
require "template_construct.php";
|
||||
|
||||
check::classes(array(foo_int));
|
||||
check::classes(array(Foo_int));
|
||||
$foo_int=new foo_int(3);
|
||||
check::is_a($foo_int,"foo_int","Made a foo_int");
|
||||
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
require "tests.php4";
|
||||
require "valuewrapper_base.php";
|
||||
|
||||
check::classes(array("base","interface_bp"));
|
||||
check::classes(array("valuewrapper_base","Base","Interface_BP"));
|
||||
check::functions("make_interface_bp");
|
||||
|
||||
$ibp=make_interface_bp();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue