private void SetupMocks(L1HostContext context)
 {
     _mockedServices.Add(context.SetupService <IConfigurationStore>(typeof(FakeConfigurationStore)));
     _mockedServices.Add(context.SetupService <IJobServer>(typeof(FakeJobServer)));
     _mockedServices.Add(context.SetupService <ITaskServer>(typeof(FakeTaskServer)));
     _mockedServices.Add(context.SetupService <IBuildServer>(typeof(FakeBuildServer)));
     _mockedServices.Add(context.SetupService <IReleaseServer>(typeof(FakeReleaseServer)));
     _mockedServices.Add(context.SetupService <IAgentPluginManager>(typeof(FakeAgentPluginManager)));
     _mockedServices.Add(context.SetupService <ITaskManager>(typeof(FakeTaskManager)));
     _mockedServices.Add(context.SetupService <ICustomerIntelligenceServer>(typeof(FakeCustomerIntelligenceServer)));
 }