From da0a9113d4ed2844e2c29aee74aced5dca19790a Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Sat, 22 Feb 2020 18:44:15 -0500 Subject: [PATCH] Introduces the full range of tests. Albeit that I don't know the correct output yet. --- .../Clock SignalTests/PatrikRakTests.swift | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/OSBindings/Mac/Clock SignalTests/PatrikRakTests.swift b/OSBindings/Mac/Clock SignalTests/PatrikRakTests.swift index cc6e4a831..a03005068 100644 --- a/OSBindings/Mac/Clock SignalTests/PatrikRakTests.swift +++ b/OSBindings/Mac/Clock SignalTests/PatrikRakTests.swift @@ -72,6 +72,26 @@ class PatrikRakTests: XCTestCase, CSTestMachineTrapHandler { runTest("z80ccf", targetOutput: targetOutput) } + func testDoc() { + let targetOutput = "???" + runTest("z80doc", targetOutput: targetOutput) + } + + func testDocFlags() { + let targetOutput = "???" + runTest("z80docflags", targetOutput: targetOutput) + } + + func testFull() { + let targetOutput = "???" + runTest("z80full", targetOutput: targetOutput) + } + + func testMemptr() { + let targetOutput = "???" + runTest("z80memptr", targetOutput: targetOutput) + } + func testMachine(_ testMachine: CSTestMachine, didTrapAtAddress address: UInt16) { let testMachineZ80 = testMachine as! CSTestMachineZ80 switch address {