diff --git a/lab - linked list lab/TestDequesDifferentially.py b/lab - linked list lab/TestDequesDifferentially.py new file mode 100644 index 0000000000000000000000000000000000000000..62a201d97ab4304229404fa0e9e7ba9441481ddd --- /dev/null +++ b/lab - linked list lab/TestDequesDifferentially.py @@ -0,0 +1,15 @@ +""" +Create a new Python file and a new test class TestDequesDifferentially. +In it, write differential test cases exercising collections.deque (a +built-in, array-based implementation with slightly different method +namesLinks to an external site.) and your LinkedDeque implementation. +Your test should exercise the deques in a variety of situations, +including situations where they have been modified on both sides. +Verify that the two implementations agree on your test cases. +""" +from unittest import TestCase +from linked_list_example import doubly_linked_node +from linked_list_example import LinkedDeque + +class TestDequesDifferentially(TestCase): +