public void AlbumActionReturnsHttpNotFoundWhenAlbumDoesNotExist() { var result = _albumsController.Album(10); Assert.IsNotNull(result); Assert.IsInstanceOfType(result, typeof(HttpNotFoundResult)); }