public void ToString_WithFollowReferencesSetToFalse() { var rootAsm = new RootAssembly(typeof(object).Assembly, false); Assert.That(rootAsm.ToString(), Is.EqualTo(typeof(object).Assembly.FullName)); }
public void ToString_WithFollowReferencesSetToTrue() { var rootAsm = new RootAssembly(typeof(object).Assembly, true); Assert.That(rootAsm.ToString(), Is.EqualTo(typeof(object).Assembly.FullName + ", including references")); }