コード例 #1
0
        public void testGetNotifications()
        {
            Task <List <FigoNotification> > task_a = sut.GetNotifications();

            task_a.Wait();
            List <FigoNotification> notifications = task_a.Result;

            Assert.IsTrue(notifications.Count > 0);
        }