コード例 #1
0
        public void TestAlbumGetById()
        {
            //Arrange
            var SqlLiteDataMock = new Mock <IMusicData>();
            var AlbumController = new AlbumController(SqlLiteDataMock.Object);

            //Act
            ActionResult actionResult = AlbumController.AlbumGetById(-1);

            //Assert
            Assert.IsType <NotFoundObjectResult>(actionResult);
        }