public void FromToUriTest(string cnlName, string type) { var feClient = new CogniPySvr(); feClient.LoadCnlFromString("John is a man.\r\nReferences: [TIS] (\"http://www.somenamespace.com/\").", true, false); var uri = feClient.UriFromCnl(cnlName, type); var transformedCnl = feClient.CnlFromUri(uri, type); Assert.AreEqual(cnlName, transformedCnl); }