예제 #1
0
        public void GetUserConstantsTest()
        {
            using (var sut = new RSignAPI(GetCredentials()))
            {
                try
                {
                    var list = sut.GetUserConstants();

                    Assert.IsNotNull(list);
                    Assert.AreNotEqual(list.Count(), 0);
                }
                catch (AuthenticationException)
                {
                    Assert.Fail();
                }
            }
        }