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

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

private TestBuildMethodContext_GlobalFunction ( ) : void
Результат void
        public void TestBuildMethodContext_GlobalFunction() {
            string testSrcML = "<function><type><name>int</name></type> <name>GetZero</name><parameter_list>()</parameter_list> <block>{<return>return <expr><lit:literal type=\"number\">0</lit:literal></expr>;</return>}</block></function>";
            XElement xml = XElement.Parse(string.Format(srcMLFormat, testSrcML), LoadOptions.PreserveWhitespace);

            MethodContext mc1 = new MethodContext("int", true, "", new List<FormalParameterRecord>(), false, false, false);
            MethodContext mc2 = ContextBuilder.BuildMethodContext(xml.Descendants(SRC.Function).First());
            Assert.IsTrue(MethodContextsAreEqual(mc1, mc2));
        }