示例#1
0
        private void RefreshMaptests()
        {
            cb_mapTests.Items.Clear();

            //add a default empty item
            cb_mapTests.Items.Add("No test selected");

            if (MapTests.ContainsKey(CurrentMapName))
            {
                List <TestCase> tests = MapTests[CurrentMapName];
                foreach (var t in tests)
                {
                    cb_mapTests.Items.Add(t);
                }
            }
        }
示例#2
0
 private static void Main()
 {
     MapTests.Run();
 }