Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save dontpaniclabsgists/dc5b984d2fcec03213e2f1ffd0aac9b4 to your computer and use it in GitHub Desktop.
Save dontpaniclabsgists/dc5b984d2fcec03213e2f1ffd0aac9b4 to your computer and use it in GitHub Desktop.
[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