Beispiel #1
0
        public void FileAPI_HasMethods()
        {
            GameFileAPI fileAPI = new GameFileAPI();

            Assert.AreNotEqual(null, fileAPI.GetType().GetMethod("LoadLevels"), "Failed to load file handler api methods");
        }
Beispiel #2
0
        public void FileAPI_HasGameFiles()
        {
            GameFileAPI fileAPI = new GameFileAPI();

            Assert.IsTrue(fileAPI.GetGameFiles(), "Failed to load file handler api game files");
        }
Beispiel #3
0
        public void FileAPI_Exists()
        {
            GameFileAPI fileAPI = new GameFileAPI();

            Assert.AreNotEqual(null, fileAPI, "Failed to load file handler api");
        }