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

Side by Side Diff: tools/telemetry/telemetry/web_components/web_components_unittest.py

Issue 169283004: Introduce telemetry.web_components and a simple component-based Results object (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: nop Created 6 years, 9 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
(Empty)
1 # Copyright (c) 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 from telemetry.web_components import web_components_project
6 from tvcm import module_test_case
7
8
9 def load_tests(_, _2, _3):
10 project = web_components_project.WebComponentsProject()
11 suite = module_test_case.DiscoverTestsInModule(
12 project,
13 project.telemetry_path)
14 assert suite.countTestCases() > 0, 'Expected to find at least one test.'
15 return suite
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698