From 50cd617bd949396300c2e70e50fc42c467f34022 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Thu, 15 Jun 2017 22:33:46 -0400 Subject: [PATCH] Ensured test raises only the intentional failure exceptions. --- .../Mac/Clock SignalTests/Z80MachineCycleTests.swift | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/OSBindings/Mac/Clock SignalTests/Z80MachineCycleTests.swift b/OSBindings/Mac/Clock SignalTests/Z80MachineCycleTests.swift index f4037f7b5..af8252e6c 100644 --- a/OSBindings/Mac/Clock SignalTests/Z80MachineCycleTests.swift +++ b/OSBindings/Mac/Clock SignalTests/Z80MachineCycleTests.swift @@ -38,8 +38,15 @@ class Z80MachineCycleTests: XCTestCase { let length = cycle.timeStamp - totalCycles totalCycles += length - XCTAssertEqual(length, busCycles[index].length) - XCTAssertEqual(cycle.operation, busCycles[index].operation) + if index >= busCycles.count { + // this can't be reached without one of the asserts failing; + // it's to prevent an unintended exeception via out-of-bounds + // array access + break + } else { + XCTAssertEqual(length, busCycles[index].length) + XCTAssertEqual(cycle.operation, busCycles[index].operation) + } index += 1 }