コード例 #1
0
 def test_find_missing(self):
     from Question1 import createtree, readwords, tree_find
     words = readwords("Words.txt")
     bintree = createtree(words)
     expected = False
     try:
         actual = tree_find("missing", bintree, True).value
     except AttributeError:
         actual = False
     self.assertEqual(actual, expected)
コード例 #2
0
 def test_tree_print_in_order(self):
     from Question1 import createtree, readwords, printinorder
     words = readwords("Words.txt")
     bintree = createtree(words)
     expected = [
         'a', 'add', 'and', 'and', 'and', 'box', 'can', 'choose', 'click',
         'complement', 'cover', 'cover', 'designs', 'different', 'document',
         'each', 'elements', 'example', 'footer', 'for', 'from',
         'galleries', 'header', 'header', 'insert', 'look', 'make',
         'matching', 'other', 'page', 'page', 'produced', 'professionally',
         'provides', 'sidebar', 'text', 'that', 'the', 'the', 'then', 'to',
         'want', 'word', 'you', 'you', 'your'
     ]
     self.assertEqual(printinorder(bintree), expected)
コード例 #3
0
    def test_tree_count(self):
        from Question1 import createtree, readwords, tree_count
        words = readwords("Words.txt")
        bintree = createtree(words)
        expected = {
            'a': 1,
            'add': 1,
            'and': 3,
            'box': 1,
            'can': 1,
            'choose': 1,
            'click': 1,
            'complement': 1,
            'cover': 2,
            'designs': 1,
            'different': 1,
            'document': 1,
            'each': 1,
            'elements': 1,
            'example': 1,
            'footer': 1,
            'for': 1,
            'from': 1,
            'galleries': 1,
            'header': 2,
            'insert': 1,
            'look': 1,
            'make': 1,
            'matching': 1,
            'other': 1,
            'page': 2,
            'produced': 1,
            'professionally': 1,
            'provides': 1,
            'sidebar': 1,
            'text': 1,
            'that': 1,
            'the': 2,
            'then': 1,
            'to': 1,
            'want': 1,
            'word': 1,
            'you': 2,
            'your': 1
        }

        self.assertEqual(tree_count(bintree), expected)
コード例 #4
0
 def test_find_in(self):
     from Question1 import createtree, readwords, tree_find
     words = readwords("Words.txt")
     bintree = createtree(words)
     expected = "look"
     self.assertEqual(tree_find("look", bintree, True).value, expected)