ABB.Swum.Tests.ContextBuilderTests.TestConstructTypeName_Namespace C# (CSharp) Метод

TestConstructTypeName_Namespace() приватный Метод

private TestConstructTypeName_Namespace ( ) : void
Результат void
        public void TestConstructTypeName_Namespace() {
            string testSrcML = "<type><name><name>std</name><op:operator>::</op:operator><name>string</name></name></type>";
            XElement xml = XElement.Parse(string.Format(srcMLFormat, testSrcML), LoadOptions.PreserveWhitespace);

            bool isPrimitive;
            Assert.AreEqual("string", ContextBuilder.ConstructTypeName(xml.Element(SRC.Type), out isPrimitive));
            Assert.AreEqual(false, isPrimitive);
        }