Created
September 27, 2017 18:30
-
-
Save dontpaniclabsgists/dc5b984d2fcec03213e2f1ffd0aac9b4 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
[TestMethod] | |
public void DoSomething1_Test() | |
{ | |
var data = new byte[1]; | |
var sut = new ReportingService(); | |
var po = new PrivateObject(sut); | |
var result = po.Invoke("DoSomething1", new object[] { data }); | |
Assert.AreEqual(1, data[0]); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment