From f04348b033cad7ff0da2ce2856536aa4ffb43c64 Mon Sep 17 00:00:00 2001 From: Yannick Warnier Date: Fri, 2 Apr 2010 13:23:14 -0500 Subject: [PATCH] Minor - code style --- tests/test_suite.php | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/tests/test_suite.php b/tests/test_suite.php index 1a0143eece..55e2482e46 100755 --- a/tests/test_suite.php +++ b/tests/test_suite.php @@ -144,17 +144,17 @@ class TestsSuite extends TestSuite { //$this->addFile(api_get_path(SYS_TEST_PATH).'/main/resourcelinker/resourcelinker.inc.test.php'); - /**This files has metadata, is not available to test*/ + // These files are metadata libraries, not available to test //$this->addFile(api_get_path(SYS_TEST_PATH).'/main/inc/lib/xht.lib.test.php'); //$this->addFile(api_get_path(SYS_TEST_PATH).'/main/inc/lib/xmd.lib.test.php'); - /**This files are not used and is not finished implement, is not available to test*/ + // These files are not used and is not finished implement, not available to test //$this->addFile(api_get_path(SYS_TEST_PATH).'/main/exercice/export/qti/qti_classes.test.php'); //$this->addFile(api_get_path(SYS_TEST_PATH).'/main/exercice/export/qti2/qti2_export.test.php'); //$this->addFile(api_get_path(SYS_TEST_PATH).'/main/exercice/export/exercise_import.inc.test.php'); //$this->addFile(api_get_path(SYS_TEST_PATH).'/main/exercice/export/scorm/scorm_export.test.php'); - /**EXERCISES**/ + // EXERCISES //$this->addFile(api_get_path(SYS_TEST_PATH).'/main/exercice/answer.class.test.php'); //$this->addFile(api_get_path(SYS_TEST_PATH).'/main/exercice/exercise_result.class.test.php'); //$this->addFile(api_get_path(SYS_TEST_PATH).'/main/inc/lib/exercise_show_functions.lib.test.php'); @@ -165,10 +165,10 @@ class TestsSuite extends TestSuite { //$this->addFile(api_get_path(SYS_TEST_PATH).'/main/exercice/freeanswer.class.test.php'); - /**FORUM*/ + // FORUM //$this->addFile(api_get_path(SYS_TEST_PATH).'main/forum/forumfunction.inc.test.php'); - /**GRADEBOOK*/ + // GRADEBOOK $this->addFile(api_get_path(SYS_TEST_PATH).'main/gradebook/lib/be/attendancelink.class.test.php'); $this->addFile(api_get_path(SYS_TEST_PATH).'main/gradebook/lib/be/category.class.test.php'); $this->addFile(api_get_path(SYS_TEST_PATH).'main/gradebook/lib/be/dropboxlink.class.test.php'); @@ -177,7 +177,7 @@ class TestsSuite extends TestSuite { $this->addFile(api_get_path(SYS_TEST_PATH).'main/gradebook/lib/be/forumthreadlink.class.test.php'); $this->addFile(api_get_path(SYS_TEST_PATH).'main/course_info/download.lib.test.php'); - /**NEW SCORM*/ + // NEW SCORM //$this->addFile(api_get_path(SYS_TEST_PATH).'main/newscorm/learnpath.class.test.php'); //$this->addFile(api_get_path(SYS_TEST_PATH).'main/newscorm/learnpathItem.class.test.php'); //$this->addFile(api_get_path(SYS_TEST_PATH).'main/newscorm/openoffice_document.class.test.php'); @@ -192,6 +192,7 @@ class TestsSuite extends TestSuite { $this->addFile(api_get_path(SYS_TEST_PATH).'/main/inc/lib/main_api.lib.test.php');//this file delete the course $this->addFile(api_get_path(SYS_TEST_PATH).'/main/inc/lib/debug.lib.inc.test.php');//this file need be to the finish of the tests + } } $test = &new TestsSuite();