1from autotest_lib.client.bin import test
2
3class error_initialize(test.test):
4    version = 1
5
6
7    def initialize(self):
8        raise NameError("test a bug in initialize()")
9
10
11    def execute(self):
12        pass
13