| Index: native_client_sdk/src/project_templates/init_project_test.py
|
| diff --git a/native_client_sdk/src/project_templates/init_project_test.py b/native_client_sdk/src/project_templates/init_project_test.py
|
| index 1fa2e09cda852fca5a7f09f8e5fa0808d8c3644b..ae1d0b291fe31ffcfe50ec9d4a62e491486fbdbb 100755
|
| --- a/native_client_sdk/src/project_templates/init_project_test.py
|
| +++ b/native_client_sdk/src/project_templates/init_project_test.py
|
| @@ -87,6 +87,13 @@ class TestGlobalFunctions(unittest.TestCase):
|
| class TestProjectInitializer(unittest.TestCase):
|
| """Class for test cases to cover public interface of ProjectInitializer."""
|
|
|
| + def __init__(self):
|
| + unittest.TestCase.__init__(self)
|
| + self.os_mock = None
|
| + self.fileinput_mock = None
|
| + self.sys_mock = None
|
| + self.shutil_mock = None
|
| +
|
| def setUp(self):
|
| self.script_dir = os.path.abspath(os.path.dirname(__file__))
|
| self.nacl_src_dir = os.getenv('NACL_SDK_ROOT', None)
|
|
|