GetStatement() public method

Retreives a statement with a given ID
public GetStatement ( string statementId ) : RusticiSoftware.TinCanAPILibrary.Model.Statement
statementId string Statement to retreive
return RusticiSoftware.TinCanAPILibrary.Model.Statement
 /// <summary>
 ///A test for GetStatement
 ///</summary>
 //[TestMethod()]
 public void GetStatementTest()
 {
     TinCanJsonConverter converter = new TinCanJsonConverter();
     TCAPI target = new TCAPI("http://cloud.scorm.com/ScormEngineInterface/TCAPI/public", new BasicHTTPAuth("test", "password"));
     Statement actual;
     actual = target.GetStatement("c17c9b10-95d4-4579-90d2-d2d4683fb88b");
     Console.Write(converter.SerializeToJSON(actual));
     Assert.Inconclusive(INCONCLUSIVE_CONSOLE);
 }