diff --git a/tests/unit/e_db_pdoTest.php b/tests/unit/e_db_pdoTest.php index 1b0e01478..e29ab28b6 100644 --- a/tests/unit/e_db_pdoTest.php +++ b/tests/unit/e_db_pdoTest.php @@ -342,7 +342,7 @@ $qry = "INSERT INTO #core_media_cat(media_cat_owner,media_cat_title,media_cat_sef,media_cat_diz,media_cat_class,media_cat_image,media_cat_order) SELECT media_cat_owner,media_cat_title,media_cat_sef,media_cat_diz,media_cat_class,media_cat_image,media_cat_order FROM #core_media_cat WHERE media_cat_id = 1"; - $result = $this->db->db_Select_gen($qry); + $this->db->db_Select_gen($qry); $qry = "INSERT INTO #core_media_cat(media_cat_owner,media_cat_title,media_cat_sef,media_cat_diz,media_cat_class,media_cat_image,media_cat_order) SELECT media_cat_owner,media_cat_title,media_cat_sef,media_cat_diz,media_cat_class,media_cat_image,media_cat_order FROM #core_media_cat WHERE media_cat_id = 1"; @@ -352,7 +352,7 @@ $result = $this->db->db_Query("INSERT INTO ".MPREFIX."core_media_cat(media_cat_owner,media_cat_title,media_cat_category,media_cat_sef,media_cat_diz,media_cat_class,media_cat_image,media_cat_order) SELECT media_cat_owner,media_cat_title,media_cat_category,media_cat_sef,media_cat_diz,media_cat_class,media_cat_image,media_cat_order FROM ".MPREFIX."core_media_cat WHERE media_cat_id = 1"); $err = $this->db->getLastErrorText(); - $this->assertFalse($result); + $this->assertFalse($result, $err); } @@ -764,7 +764,7 @@ $result = $this->db->max('generic', 'gen_user_id', "gen_ip = '127.0.0.1'"); $this->assertEquals('555', $result); - + } @@ -1054,7 +1054,7 @@ } - /** + /** * @desc Test primary methods against a secondary database (ensures mysqlPrefix is working correctly) */ public function testSecondaryDatabase() diff --git a/tests/unit/e_jsmanagerTest.php b/tests/unit/e_jsmanagerTest.php new file mode 100644 index 000000000..042645a9b --- /dev/null +++ b/tests/unit/e_jsmanagerTest.php @@ -0,0 +1,256 @@ +js = $this->make('e_jsmanager'); + } catch(Exception $e) + { + $this->assertTrue(false, "Couldn't load e_jsmanager object"); + } + + } + +/* + public function testHeaderPlugin() + { + + } + + public function testTryHeaderInline() + { + + } +*/ + public function testIsInAdmin() + { + $result = $this->js->isInAdmin(); + $this->assertFalse($result); + + } +/* + public function testRequireCoreLib() + { + + } + + public function testSetInAdmin() + { + + } + + public function testCoreCSS() + { + + } + + public function testResetDependency() + { + + } + + public function testJsSettings() + { + + } + + public function testGetInstance() + { + + } + + public function testFooterFile() + { + + } + + public function testSetData() + { + + } + + public function testLibraryCSS() + { + + } + + public function testTryHeaderFile() + { + + } + + public function testThemeCSS() + { + + } + + public function testOtherCSS() + { + + } + + public function testSetLastModfied() + { + + } + + public function testRenderLinks() + { + + } + + public function testThemeLib() + { + + } + + public function testRenderFile() + { + + } + + public function testHeaderCore() + { + + } + + public function testRenderInline() + { + + } + + public function testFooterTheme() + { + + } + + public function testGetData() + { + + } + + public function testRequirePluginLib() + { + + } + + public function testGetCacheId() + { + + } + + public function testHeaderTheme() + { + + } + + public function testInlineCSS() + { + + } + + public function testHeaderFile() + { + + } + + public function testSetDependency() + { + + } + + public function testHeaderInline() + { + + } + + public function testGetLastModfied() + { + + } + + public function testSetCacheId() + { + + } + + public function testGetCurrentTheme() + { + + } + + public function testPluginCSS() + { + + } + + public function testCheckLibDependence() + { + + } + + public function testRenderCached() + { + + } + + public function testGetCurrentLocation() + { + + } + + public function testFooterInline() + { + + } + + public function testAddLibPref() + { + + } + + public function testAddLink() + { + + } + + public function testLibDisabled() + { + + } + + public function testArrayMergeDeepArray() + { + + } + + public function testRenderJs() + { + + } + + public function testRemoveLibPref() + { + + } + + */ + + } diff --git a/tests/unit/e_userTest.php b/tests/unit/e_userTest.php new file mode 100644 index 000000000..283679a91 --- /dev/null +++ b/tests/unit/e_userTest.php @@ -0,0 +1,125 @@ +user = $this->make('e_user'); + } + catch (Exception $e) + { + $this->assertTrue(false, "Couldn't load e_user object"); + } + } + +/* + + public function testIsCurrent() + { + + } + + public function testGetProvider() + { + + } + + public function testLogoutAs() + { + + } + + public function testInitProvider() + { + + } + + public function testSetSessionData() + { + + } + + public function test__construct() + { + + } + + public function testLogin() + { + + } + + public function testLogout() + { + + } + + public function testHasProvider() + { + + } + + public function testSetProvider() + { + + } + + public function testGetSessionDataAs() + { + + } + + public function testLoginProvider() + { + + } + + public function testLoginAs() + { + + } + + public function testTryProviderSession() + { + + } + + public function testLoad() + { + + } + + public function testLoadAs() + { + + } + + public function testGetParentId() + { + + } + + public function testDestroy() + { + + } + + public function testHasSessionError() + { + + }*/ + } diff --git a/tests/unit/user_classTest.php b/tests/unit/user_classTest.php new file mode 100644 index 000000000..597922888 --- /dev/null +++ b/tests/unit/user_classTest.php @@ -0,0 +1,187 @@ +uc = $this->make('user_class'); + } + catch (Exception $e) + { + $this->assertTrue(false, "Couldn't load user_class object"); + } + } + +/* + public function testGetFixedClassDescription() + { + + } + + public function testGet_all_user_classes() + { + + } + + public function testUc_get_classname() + { + + } + + public function testUc_required_class_list() + { + + } + + public function testGetIdentifier() + { + + } + + public function testGetID() + { + + } + + public function testUcAdd() + { + + } + + public function testUc_get_classlist() + { + + } + + public function testCheckbox() + { + + } + + public function testGet_users_in_class() + { + + } + + public function testGet_editable_classes() + { + + } + + public function testCheckbox_desc() + { + + } + + public function testIsEditableClass() + { + + } + + public function testGetClassList() + { + + } + + public function testGetClassFromKey() + { + + } + + public function testStripFixedClasses() + { + + } + + public function testUc_get_classdescription() + { + + } + + public function testUcRemove() + { + + } + + public function testReadTree() + { + + } + + public function testIsAdmin() + { + + } + + public function testUc_get_classicon() + { + + } + + public function testClearCache() + { + + } + + public function testGetDescription() + { + + } + + public function testUc_dropdown() + { + + } + + public function testUc_checkboxes() + { + + } + + public function testNormalise_classes() + { + + } + + public function testSelect() + { + + } + + public function testMergeClassLists() + { + + } + + public function testGetName() + { + + } + + public function testUcGetClassIDFromName() + { + + } + + public function testVetted_tree() + { + + } +*/ + + + }