Exemplo n.º 1
0
        public void ToString_WithFollowReferencesSetToFalse()
        {
            var rootAsm = new RootAssembly(typeof(object).Assembly, false);

            Assert.That(rootAsm.ToString(), Is.EqualTo(typeof(object).Assembly.FullName));
        }
Exemplo n.º 2
0
        public void ToString_WithFollowReferencesSetToTrue()
        {
            var rootAsm = new RootAssembly(typeof(object).Assembly, true);

            Assert.That(rootAsm.ToString(), Is.EqualTo(typeof(object).Assembly.FullName + ", including references"));
        }