VoidStatements() public method

Voids a series of statements using the administrator actor
public VoidStatements ( string statementIdsToVoid ) : void
statementIdsToVoid string A list of statement IDs
return void
 /// <summary>
 ///A test for VoidStatements
 ///</summary>
 //[TestMethod()]
 public void VoidStatementsTest()
 {
     TCAPI target = new TCAPI("http://cloud.scorm.com/ScormEngineInterface/TCAPI/public", new BasicHTTPAuth("test", "password"));
     target.AdminActor = new Actor("Example", "mailto:[email protected]");
     string[] statementIdsToVoid = { "c17c9b10-95d4-4579-90d2-d2d4683fb88b" };
     target.VoidStatements(statementIdsToVoid);
     Assert.Inconclusive(INCONCLUSIVE);
 }