def test_inruntime_inbuild_phase_is_false(self):

        config = Config(self.mockEnvironmentBuild)
        self.assertFalse(config.in_runtime())
    def test_inruntime_in_runtime_is_true(self):

        config = Config(self.mockEnvironmentDeploy)
        self.assertTrue(config.in_runtime())