Fix case of class names in more check::classes() calls.

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@10435 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Olly Betts 2008-05-10 17:01:16 +00:00
commit cdda73830b
6 changed files with 6 additions and 6 deletions

View file

@ -4,7 +4,7 @@
require "tests.php4";
require "enum_scope_template.php";
check::classes("treeint");
check::classes(array("enum_scope_template", "TreeInt"));
check::functions("chops");
check::equal(0,TreeInt_Oak,"0==TreeInt_Oak");
check::equal(1,TreeInt_Fir,"0==TreeInt_Fir");

View file

@ -4,7 +4,7 @@
require "tests.php4";
require "evil_diamond_ns.php";
check::classes(array("foo","bar","baz","spam"));
check::classes(array("evil_diamond_ns","foo","bar","baz","spam"));
check::functions("test");
check::is_a("bar","foo");
check::is_a("baz","foo");

View file

@ -4,7 +4,7 @@
require "tests.php4";
require "evil_diamond_prop.php";
check::classes(array("foo","bar","baz","spam"));
check::classes(array("evil_diamond_prop","foo","bar","baz","spam"));
check::functions("test");
check::is_a("bar","foo");
check::is_a("baz","foo");

View file

@ -4,7 +4,7 @@
require "tests.php4";
require "evil_diamond.php";
check::classes(array("foo","bar","baz","spam"));
check::classes(array("evil_diamond","foo","bar","baz","spam"));
check::functions("test");
check::is_a("bar","foo");
check::is_a("baz","foo");

View file

@ -4,7 +4,7 @@
require "tests.php4";
require "extend_template_ns.php";
check::classes(array("foo_one"));
check::classes(array("extend_template_ns","Foo_One"));
$foo=new Foo_One();
check::equal(2,$foo->test1(2),"test1");
check::equal(3,$foo->test2(3),"test2");

View file

@ -4,7 +4,7 @@
require "tests.php4";
require "extend_template.php";
check::classes(array("foo_0"));
check::classes(array("Foo_0"));
$foo=new Foo_0();
check::equal(2,$foo->test1(2),"test1");
check::equal(3,$foo->test2(3),"test2");