示例#1
0
        public void test_31_getNamesOfGroupMembers_invalid_input()
        {
            String exception = "";
            try
            {
                Dictionary<string, string> b = d.getNamesOfGroupMembers(-1);
            }
            catch (Exception e)
            {
                exception = e.ToString();
            }

            Assert.IsTrue(exception.Contains("ArgumentOutOfRangeException"));
        }