Tests.Tests.TestReadCountAcrossThreads C# (CSharp) Метод

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

private TestReadCountAcrossThreads ( ) : void
Результат void
        public void TestReadCountAcrossThreads()
        {
            var story = CompileString(@"
    -> top

= top
    {top}
    <- aside
    {top}
    -> DONE

= aside
    * {false} DONE
");
            Assert.AreEqual("1\n1\n", story.ContinueMaximally());
        }
Tests