Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(325)

Side by Side Diff: tools/telemetry_tools/find_dependencies_unittest.py

Issue 103433002: [telemetry] Script for finding all Telemetry dependencies. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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()
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698