Lines Matching refs:myEngine

332             Engine myEngine = new Engine(@"c:\");  in MalformedProjectDoesNotGetAddedToEngine()
333 Project myProject = myEngine.CreateNewProject(); in MalformedProjectDoesNotGetAddedToEngine()
342 myEngine.GetLoadedProject(projectFile)); in MalformedProjectDoesNotGetAddedToEngine()
359 myEngine.GetLoadedProject(projectFile)); in MalformedProjectDoesNotGetAddedToEngine()
364 myEngine.UnregisterAllLoggers(); in MalformedProjectDoesNotGetAddedToEngine()
365 myEngine.UnloadAllProjects(); in MalformedProjectDoesNotGetAddedToEngine()
380 MockEngine myEngine = new MockEngine(); in BuildProjectFileWithGlobalPropertiesSetInEngineObjectWithProjectFileSpecified()
384 myEngine.GlobalProperties.SetProperty("MyGlobalProp", "SomePropertyText"); in BuildProjectFileWithGlobalPropertiesSetInEngineObjectWithProjectFileSpecified()
385 myEngine.BuildProjectFile(projectFile); in BuildProjectFileWithGlobalPropertiesSetInEngineObjectWithProjectFileSpecified()
386 myEngine.AssertLogContains("SomePropertyText"); in BuildProjectFileWithGlobalPropertiesSetInEngineObjectWithProjectFileSpecified()
390 myEngine.UnregisterAllLoggers(); in BuildProjectFileWithGlobalPropertiesSetInEngineObjectWithProjectFileSpecified()
391 myEngine.UnloadAllProjects(); in BuildProjectFileWithGlobalPropertiesSetInEngineObjectWithProjectFileSpecified()
405 MockEngine myEngine = new MockEngine(); in BuildProjectFileWithGlobalPropertiesSetInEngineObjectWithProjectFileAndTargetSpecified()
409 myEngine.GlobalProperties.SetProperty("MyGlobalProp", "SomePropertyText"); in BuildProjectFileWithGlobalPropertiesSetInEngineObjectWithProjectFileAndTargetSpecified()
410 myEngine.BuildProjectFile(projectFile, "Build"); in BuildProjectFileWithGlobalPropertiesSetInEngineObjectWithProjectFileAndTargetSpecified()
411 myEngine.AssertLogContains("SomePropertyText"); in BuildProjectFileWithGlobalPropertiesSetInEngineObjectWithProjectFileAndTargetSpecified()
415 myEngine.UnregisterAllLoggers(); in BuildProjectFileWithGlobalPropertiesSetInEngineObjectWithProjectFileAndTargetSpecified()
416 myEngine.UnloadAllProjects(); in BuildProjectFileWithGlobalPropertiesSetInEngineObjectWithProjectFileAndTargetSpecified()
431 MockEngine myEngine = new MockEngine(); in BuildProjectFileWithGlobalPropertiesSetInEngineObjectWithProjectFileAndTargetListSpecified()
437 myEngine.GlobalProperties.SetProperty("MyGlobalProp", "SomePropertyText"); in BuildProjectFileWithGlobalPropertiesSetInEngineObjectWithProjectFileAndTargetListSpecified()
438 myEngine.BuildProjectFile(projectFile, targets); in BuildProjectFileWithGlobalPropertiesSetInEngineObjectWithProjectFileAndTargetListSpecified()
439 myEngine.AssertLogContains("SomePropertyText"); in BuildProjectFileWithGlobalPropertiesSetInEngineObjectWithProjectFileAndTargetListSpecified()
443 myEngine.UnregisterAllLoggers(); in BuildProjectFileWithGlobalPropertiesSetInEngineObjectWithProjectFileAndTargetListSpecified()
444 myEngine.UnloadAllProjects(); in BuildProjectFileWithGlobalPropertiesSetInEngineObjectWithProjectFileAndTargetListSpecified()
459 MockEngine myEngine = new MockEngine(); in BuildProjectFileWithNullGlobalProperties()
465 bool result = myEngine.BuildProjectFile(projectFile, targets, null); in BuildProjectFileWithNullGlobalProperties()
466 myEngine.AssertLogDoesntContain("SomePropertyText"); in BuildProjectFileWithNullGlobalProperties()
471 myEngine.UnregisterAllLoggers(); in BuildProjectFileWithNullGlobalProperties()
472 myEngine.UnloadAllProjects(); in BuildProjectFileWithNullGlobalProperties()