Example #1
0
 public void TestGetAdjacencyMatrixJson()
 {
     var testSubject = new NoFuture.Util.Gia.GraphViz.AsmDiagram(GetTestAsm());
     var testResult = testSubject.GetAdjacencyMatrixJson();
     Assert.IsNotNull(testResult);
     Assert.IsFalse(string.IsNullOrWhiteSpace(testResult));
     System.Diagnostics.Debug.WriteLine(testResult);
 }