Skip to content

Commit

Permalink
Remove redundant test cases from MagicianInTrainingTests (#814)
Browse files Browse the repository at this point in the history
  • Loading branch information
meatball133 authored Dec 25, 2024
1 parent a9f2f3f commit 4394b31
Showing 1 changed file with 0 additions and 20 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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),
]
}

0 comments on commit 4394b31

Please sign in to comment.