Example #1
0
//JAVA TO C# CONVERTER TODO TASK: Most Java annotations will not have direct .NET equivalent attributes:
//ORIGINAL LINE: @Test void runAllMustRunAll()
        internal virtual void RunAllMustRunAll()
        {
            // given
            Task task1 = new Task(this);
            Task task2 = new Task(this);
            Task task3 = new Task(this);

            // when
            Runnables.RunAll("", task1, task2, task3);

            // then
            AssertRun(task1, task2, task3);
        }