ppf/new: Add test module for parsing.py.
[cs-p2p-next.git] / ppf / new / tests / test_parsing.py
1 """
2 Test suite for parsing.py. Uses unittest module.
3
4 2011, Razvan Deaconescu, razvan.deaconescu@cs.pub.ro
5 """
6
7 import unittest
8 import os
9 import os.path
10 import shutil
11 import sys
12
13 import parsing
14
15 class LibtorrentLogParserTest(unittest.TestCase):
16     """Test suite for LibtorrentLogParser class in parsing.py."""
17
18     def setUp(self):
19         pass
20
21     def tearDown(self):
22         pass
23
24
25 class TriblerLogParserTest(unittest.TestCase):
26     """Test suite for TriblerLogParser class in parsing.py."""
27
28     def setUp(self):
29         pass
30
31     def tearDown(self):
32         pass
33
34
35 if __name__ == "__main__":
36     unittest.main()