Searched defs:GraphicsTest (Results 1 - 1 of 1) sorted by relevance

/external/autotest/client/cros/graphics/
H A Dgraphics_utils.py33 class GraphicsTest(test.test): class in inherits:test.test
36 GraphicsTest is the base class for graphics tests.
37 Every subclass of GraphicsTest should call GraphicsTests initialize/cleanup
56 super(GraphicsTest, self).__init__(*args, **kwargs)
70 if hasattr(super(GraphicsTest, self), "initialize"):
71 test_utils._cherry_pick_call(super(GraphicsTest, self).initialize,
87 logging.debug('GraphicsTest recorded failures: %s', self.get_failures())
96 if hasattr(super(GraphicsTest, self), "cleanup"):
97 test_utils._cherry_pick_call(super(GraphicsTest, self).cleanup,
122 This method should only decorate to functions of GraphicsTest
[all...]

Completed in 89 milliseconds