diff options
| author | rPatrickWarner <[email protected]> | 2024-05-29 20:02:38 -0700 |
|---|---|---|
| committer | rPatrickWarner <[email protected]> | 2024-05-29 20:02:38 -0700 |
| commit | a3535ec86e9d4ca6eda27817d33e0e7bac4b8562 (patch) | |
| tree | b9bc7f2170aae6cad1f9c7ec774adee978d52220 /CST 126/UnitTester/UnitTester.cpp | |
| parent | cleaned up and added some unit tests (diff) | |
| parent | added singly and doubly linked node classes (diff) | |
| download | homework-1-reecepwarner-a3535ec86e9d4ca6eda27817d33e0e7bac4b8562.tar.xz homework-1-reecepwarner-a3535ec86e9d4ca6eda27817d33e0e7bac4b8562.zip | |
merging template node branch into develop
Diffstat (limited to 'CST 126/UnitTester/UnitTester.cpp')
| -rw-r--r-- | CST 126/UnitTester/UnitTester.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CST 126/UnitTester/UnitTester.cpp b/CST 126/UnitTester/UnitTester.cpp index ed4c80f..ac704e3 100644 --- a/CST 126/UnitTester/UnitTester.cpp +++ b/CST 126/UnitTester/UnitTester.cpp @@ -125,7 +125,7 @@ namespace LinkedListUnitTests } TEST_METHOD(Insert_After_Empty_List) { - + struct SinglyLinkedList<int> NewList {}; ListNode<int> Node1 = { 1,nullptr }; |