Roll src/third_party/WebKit 6f84130:7353389 (svn 184386:184391)
[chromium-blink-merge.git] / tools / telemetry / unittest_data / page_tests / page_test1.py
blobae64472a0273d3a6567628c9b5404e2de949282c
1 # Copyright 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.
5 """A simple PageTest used by page/record_wpr.py's unit tests."""
7 from telemetry.page import page_test
9 class MockPageTestOne(page_test.PageTest):
10 def __init__(self):
11 super(MockPageTestOne, self).__init__(action_name_to_run="RunFoo")
13 def ValidateAndMeasurePage(self, page, tab, results):
14 pass