Пример #1
0
        public async Task TestRefreshAllCommunityInfoAsync()
        {
            SeashellApplications app = new SeashellApplications();

            int updatedRecords = await app.RefreshAllCommunityInfo();

            Assert.IsTrue(updatedRecords > 0);
        }
Пример #2
0
        public async Task TestReadAllCommunitiesAsync()
        {
            SeashellApplications app = new SeashellApplications();

            List <Community> communities = await app.ReadAllCommunities();

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