コード例 #1
0
        public void GetDefaultPageClients_WithValidCredentials_ShouldReturnValidCollection()
        {
            var clients = client.GetDefaultPageClients();

            Assert.That(clients.Count, Is.GreaterThan(0));
            foreach (var testingApplication in clients)
            {
                Assert.That(string.IsNullOrEmpty(testingApplication.ApplicationCode), Is.Not.True);
                Assert.That(string.IsNullOrEmpty(testingApplication.ApplicationLongName), Is.Not.True);
                Assert.That(string.IsNullOrEmpty(testingApplication.PlatformName), Is.Not.True);
            }
        }