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

Side by Side Diff: tools/metrics/count_ifdefs_unittest.py

Issue 12782019: Move browser_components_metrics.py into a subdirectory of tools/metrics/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Move files to //compontents/tools/metrics Created 7 years, 8 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
« no previous file with comments | « tools/metrics/count_ifdefs.py ('k') | tools/metrics/testdata/foo.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #!/usr/bin/env python
2 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file.
5
6 """Tests for count_ifdefs.
7 """
8
9 import os
10 import unittest
11
12 import count_ifdefs
13
14
15 class CountIfdefsTest(unittest.TestCase):
16
17 def setUp(self):
18 self.root = os.path.join(os.path.dirname(__file__), 'testdata')
19
20 def testNormal(self):
21 count = count_ifdefs.CountIfdefs('OS_[A-Z]+', self.root)
22 self.failUnless(count == 6)
23
24 def testSkipTests(self):
25 count = count_ifdefs.CountIfdefs('OS_[A-Z]+', self.root, True)
26 self.failUnless(count == 4)
27
28
29 if __name__ == '__main__':
30 unittest.main()
OLDNEW
« no previous file with comments | « tools/metrics/count_ifdefs.py ('k') | tools/metrics/testdata/foo.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698