public void CreatePlayList_Should_Throw_ArgumentException_When_AccessToken_IsNullOrWhitespace() { //Arrange string access_token = null; //Act AsyncTestDelegate act = async() => await spotifyClient.CreatePlayList("dummyPlaylistName", access_token); // Assert Assert.That(act, Throws.TypeOf <ArgumentNullException>()); }