diff --git a/output/Lua/UnitTests/Console.lua b/output/Lua/UnitTests/Console.lua new file mode 100644 index 0000000000..1e1433d6b5 --- /dev/null +++ b/output/Lua/UnitTests/Console.lua @@ -0,0 +1,9 @@ +--console.clear() +--console.writeline("--cleared previous output") +--console.log("--Logging ", "multiple ", "values ", "in one ", "call", "\n") +--console.write("--console.write does not include a new line") +--console.writeline("--but console.writeline does") +--console.writeline("--next line") +--print("--Print Single value\n") +--console.writeline("--Log a lua table:") +console.log(joypad.get()) diff --git a/output/Lua/UnitTests/GameInfo.lua b/output/Lua/UnitTests/GameInfo.lua index fcaa9a0703..d6ea5ba63a 100644 --- a/output/Lua/UnitTests/GameInfo.lua +++ b/output/Lua/UnitTests/GameInfo.lua @@ -1,10 +1,10 @@ -console.log("Game Info library test") -console.log("Rom Name: " .. gameinfo.getromname()); -console.log("Rom Hash: " .. gameinfo.getromhash()); -console.log("Display Type: " .. emu.getdisplaytype()); -console.log("In Database?: " .. tostring(gameinfo.indatabase())); -console.log("Rom Status: " .. gameinfo.getstatus()); -console.log("Is Status Bad?: " .. tostring(gameinfo.isstatusbad())); -console.log("Board Type: " .. gameinfo.getboardtype()); -console.log("Game Options: ") -console.log(gameinfo.getoptions()); \ No newline at end of file +console.writeline("Game Info library test") +console.writeline("Rom Name: " .. gameinfo.getromname()); +console.writeline("Rom Hash: " .. gameinfo.getromhash()); +console.writeline("Display Type: " .. emu.getdisplaytype()); +console.writeline("In Database?: " .. tostring(gameinfo.indatabase())); +console.writeline("Rom Status: " .. gameinfo.getstatus()); +console.writeline("Is Status Bad?: " .. tostring(gameinfo.isstatusbad())); +console.writeline("Board Type: " .. gameinfo.getboardtype()); +console.writeline("Game Options: ") +console.writeline(gameinfo.getoptions()); \ No newline at end of file diff --git a/output/Lua/UnitTests/Joypad_Set.lua b/output/Lua/UnitTests/Joypad_Set.lua index 60baa6011e..fc6e969ce3 100644 --- a/output/Lua/UnitTests/Joypad_Set.lua +++ b/output/Lua/UnitTests/Joypad_Set.lua @@ -1,12 +1,12 @@ -console.log("Unit test for joypad.set") -console.log("Core Required: NES (or any multi-player core with U,D,L,R,select,start,A,B as buttons)") -console.log("Correct behavior:") -console.log("No Directional button shoudl be imparied in any way, should operate as if nothing was ever pressed") -console.log("A should be off and user can not push buttons to change that") -console.log("B should be on and the user can not push buttons to change that") -console.log("Select should be on, but pressing it turns it off") -console.log("Start should be unaffected") -console.log("After frame 600, the console will say 'cleared', and now all buttons should be off and unaffected, as if the script was never run"); +console.writeline("Unit test for joypad.set") +console.writeline("Core Required: NES (or any multi-player core with U,D,L,R,select,start,A,B as buttons)") +console.writeline("Correct behavior:") +console.writeline("No Directional button shoudl be imparied in any way, should operate as if nothing was ever pressed") +console.writeline("A should be off and user can not push buttons to change that") +console.writeline("B should be on and the user can not push buttons to change that") +console.writeline("Select should be on, but pressing it turns it off") +console.writeline("Start should be unaffected") +console.writeline("After frame 600, the console will say 'cleared', and now all buttons should be off and unaffected, as if the script was never run"); buttons = { }; @@ -37,7 +37,7 @@ while true do turnoff["Start"] = null; joypad.set(turnoff, 1); - console.log("cleared") + console.writeline("cleared") end emu.frameadvance(); diff --git a/output/Lua/UnitTests/Joypad_WithControllerNumbers.lua b/output/Lua/UnitTests/Joypad_WithControllerNumbers.lua index 7949849468..0f36217b87 100644 --- a/output/Lua/UnitTests/Joypad_WithControllerNumbers.lua +++ b/output/Lua/UnitTests/Joypad_WithControllerNumbers.lua @@ -1,12 +1,12 @@ -console.log("Unit test for joypad.set using the controller parameter") -console.log("Core Required: NES (or any multi-player core with U,D,L,R,select,start,A,B as buttons)") -console.log("Correct behavior:") -console.log("No Directional button shoudl be imparied in any way, should operate as if nothing was ever pressed") -console.log("A should be off and user can not push buttons to change that") -console.log("B should be on and the user can not push buttons to change that") -console.log("Select should be on, but pressing it turns it off") -console.log("Start should be unaffected") -console.log("After frame 600, the console will say 'cleared', and now all buttons should be off and unaffected, as if the script was never run"); +console.writeline("Unit test for joypad.set using the controller parameter") +console.writeline("Core Required: NES (or any multi-player core with U,D,L,R,select,start,A,B as buttons)") +console.writeline("Correct behavior:") +console.writeline("No Directional button shoudl be imparied in any way, should operate as if nothing was ever pressed") +console.writeline("A should be off and user can not push buttons to change that") +console.writeline("B should be on and the user can not push buttons to change that") +console.writeline("Select should be on, but pressing it turns it off") +console.writeline("Start should be unaffected") +console.writeline("After frame 600, the console will say 'cleared', and now all buttons should be off and unaffected, as if the script was never run"); buttons = { }; @@ -37,7 +37,7 @@ while true do turnoff["Start"] = null; joypad.set(turnoff, 1); - console.log("cleared") + console.writeline("cleared") end emu.frameadvance(); diff --git a/output/Lua/UnitTests/UnitTests.luases b/output/Lua/UnitTests/UnitTests.luases index e6926008c6..11e46045f2 100644 --- a/output/Lua/UnitTests/UnitTests.luases +++ b/output/Lua/UnitTests/UnitTests.luases @@ -1,3 +1,4 @@ 0 .\Lua\UnitTests\Joypad_Set.lua 0 .\Lua\UnitTests\Joypad_WithControllerNumbers.lua 0 .\Lua\UnitTests\GameInfo.lua +0 .\Lua\UnitTests\Console.lua