Set up test cases
(self)
| 9 | |
| 10 | class TestBrowserHistory(unittest.TestCase): |
| 11 | def setUp(self): |
| 12 | """Set up test cases""" |
| 13 | self.browser = BrowserHistory("homepage.com") |
| 14 | |
| 15 | def test_initialization(self): |
| 16 | """Test proper initialization of BrowserHistory""" |
nothing calls this directly
no test coverage detected