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

Unified Diff: tools/perf/measurements/loading_trace_unittest.py

Issue 661653003: telemetry: Delete loading measurement. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tools/perf/measurements/loading_trace.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/perf/measurements/loading_trace_unittest.py
diff --git a/tools/perf/measurements/loading_trace_unittest.py b/tools/perf/measurements/loading_trace_unittest.py
deleted file mode 100644
index 62ddb2933291f458213d61f4c198ab850c0387e3..0000000000000000000000000000000000000000
--- a/tools/perf/measurements/loading_trace_unittest.py
+++ /dev/null
@@ -1,23 +0,0 @@
-# Copyright 2014 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-from measurements import loading_trace
-from telemetry.core import wpr_modes
-from telemetry.unittest import options_for_unittests
-from telemetry.unittest import page_test_test_case
-
-class LoadingTraceUnitTest(page_test_test_case.PageTestTestCase):
- def setUp(self):
- self._options = options_for_unittests.GetCopy()
- self._options.browser_options.wpr_mode = wpr_modes.WPR_OFF
-
- def testLoadingTraceBasic(self):
- ps = self.CreatePageSetFromFileInUnittestDataDir('scrollable_page.html')
- measurement = loading_trace.LoadingTrace()
- trace_options = self._options
- results = self.RunMeasurement(measurement, ps, options = trace_options)
- self.assertEquals(0, len(results.failures))
-
- def testCleanUpTrace(self):
- self.TestTracingCleanedUp(loading_trace.LoadingTrace, self._options)
« no previous file with comments | « tools/perf/measurements/loading_trace.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698