Created
November 17, 2013 22:19
-
-
Save JayBazuzi/7519022 to your computer and use it in GitHub Desktop.
Execute my test project in-proc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var myProject = new ProjectInstance(@"..\..\my.proj"); | |
var logger = new HighImportanceStringLogger(); | |
var success = myProject.Build(new[] { logger }); | |
Assert.IsTrue(success); | |
const string expected = @"Inputs: | |
Foo = hi | |
"; | |
Assert.AreEqual(expected, logger.ToString()); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment