Skip to content
Snippets Groups Projects
Commit 0f7ff97c authored by Duncan Holmes's avatar Duncan Holmes
Browse files

Upload New File

parent 7ccb1d26
No related branches found
No related tags found
No related merge requests found
"""
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):
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment