OLD | NEW |
---|---|
1 #!/usr/bin/env python | |
tonyg
2014/01/29 05:10:08
Not necessary, right?
We should definitely get th
dtu
2014/02/13 21:49:35
I kind of think I would like all unit tests to hav
| |
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 2 # Copyright (c) 2013 The Chromium Authors. All rights reserved. |
tonyg
2014/01/29 05:10:08
2014
dtu
2014/02/13 21:49:35
Done.
| |
2 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 4 # found in the LICENSE file. |
4 | 5 |
6 import os | |
5 import unittest | 7 import unittest |
6 | 8 |
7 class TimelineEventTest(unittest.TestCase): | 9 |
10 class FindDependenciesTest(unittest.TestCase): | |
tonyg
2014/01/29 05:10:08
For this test, why not just create a mini, fake te
dtu
2014/02/13 21:49:35
I think I will make unit tests in a followup patch
| |
8 pass | 11 pass |
12 | |
13 | |
14 if __name__ == '__main__': | |
15 unittest.main() | |
OLD | NEW |