From 95d806656e96a3771a353d2c8d8b88f3946f34b7 Mon Sep 17 00:00:00 2001 From: meatball Date: Wed, 25 Dec 2024 23:09:51 +0100 Subject: [PATCH] Remove redundant test cases from MagicianInTrainingTests --- .../MagicianInTrainingTests.swift | 20 ------------------- 1 file changed, 20 deletions(-) diff --git a/exercises/concept/magician-in-training/Tests/MagicianInTrainingTests/MagicianInTrainingTests.swift b/exercises/concept/magician-in-training/Tests/MagicianInTrainingTests/MagicianInTrainingTests.swift index fefb02a97..f5bd8d04f 100644 --- a/exercises/concept/magician-in-training/Tests/MagicianInTrainingTests/MagicianInTrainingTests.swift +++ b/exercises/concept/magician-in-training/Tests/MagicianInTrainingTests/MagicianInTrainingTests.swift @@ -112,24 +112,4 @@ final class MagicianInTrainingTests: XCTestCase { let stack = [7, 3, 7, 1, 5, 5, 3, 9, 9] XCTAssertEqual(evenCardCount(stack), 0) } - - static var allTests = [ - ("testGetCard", testGetCard), - ("testSetCard", testSetCard), - ("testSetCardIndexTooLow", testSetCardIndexTooLow), - ("testSetCardIndexTooHigh", testSetCardIndexTooHigh), - ("testInsertAtTop", testInsertAtTop), - ("testRemoveCard", testRemoveCard), - ("testRemoveCardIndexTooLow", testRemoveCardIndexTooLow), - ("testRemoveCardIndexTooHigh", testRemoveCardIndexTooHigh), - ("testRemoveTopCard", testRemoveTopCard), - ("testRemoveTopCardFromEmptyStack", testRemoveTopCardFromEmptyStack), - ("testInsertAtBottom", testInsertAtBottom), - ("testRemoveBottomCard", testRemoveBottomCard), - ("testRemoveBottomCardFromEmptyStack", testRemoveBottomCardFromEmptyStack), - ("testCheckSizeTrue", testCheckSizeTrue), - ("testCheckSizeFalse", testCheckSizeFalse), - ("testEvenCardCount", testEvenCardCount), - ("testEvenCardCountZero", testEvenCardCountZero), - ] }