public void ContactNotifications_successfully_returns_a_list_of_V1CharactersNotificationsContacts() { int characterId = 88823; CharacterScopes scopes = CharacterScopes.esi_characters_read_notifications_v1; SsoToken inputToken = new SsoToken { AccessToken = "This is a old access token", RefreshToken = "This is a old refresh token", CharacterId = characterId, CharacterScopesFlags = scopes }; LatestCharacterEndpoints internalLatestCharacter = new LatestCharacterEndpoints(string.Empty, true); IList <V1CharactersNotificationsContacts> getCharactersNotificationsContacts = internalLatestCharacter.ContactNotifications(inputToken); Assert.Equal(1, getCharactersNotificationsContacts.Count); Assert.Equal(1, getCharactersNotificationsContacts.First().NotificationId); Assert.Equal(95465499, getCharactersNotificationsContacts.First().SenderCharacterId); Assert.Equal(new DateTime(2017, 08, 16, 10, 08, 00), getCharactersNotificationsContacts.First().SendDate); Assert.Equal(1.5, getCharactersNotificationsContacts.First().StandingLevel); }