public async Task ListRelatedCollectionsTest() { var client = new UnsplasharpClient(Credentials.ApplicationId); var listCollection = await client.ListCollections(); var collectionsRelated = await client.ListRelatedCollections(listCollection[0].Id); Assert.IsNotNull(collectionsRelated); Assert.IsTrue(collectionsRelated.Count > 0); }