cygprofile: increase timeouts to allow showing web contents
[chromium-blink-merge.git] / build / android / pylib / base / test_server.py
blob085a51e9bae5cc5911e7bb8f7f069b166512c2ee
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 class TestServer(object):
6 """Base class for any server that needs to be set up for the tests."""
8 def __init__(self, *args, **kwargs):
9 pass
11 def SetUp(self):
12 raise NotImplementedError
14 def Reset(self):
15 raise NotImplementedError
17 def TearDown(self):
18 raise NotImplementedError