コード例 #1
0
        public GetAlbumInfoCommandTests()
        {
            _command = new GetInfoCommand(MAuth.Object)
            {
                AlbumName = "Ray of Light",
                ArtistName = "Madonna"
            };

            _command.SetParameters();
        }
コード例 #2
0
        public GetAlbumInfoCommandTests()
        {
            _command = new GetInfoCommand(MAuth.Object)
            {
                AlbumName  = "Ray of Light",
                ArtistName = "Madonna"
            };

            _command.SetParameters();
        }
コード例 #3
0
        public void ArtistGetInfo_SetLangParam_Success()
        {
            GetInfoCommand _command2 = new GetInfoCommand(MAuth.Object)
            {
                ArtistName  = "Frightened Rabbit",
                BioLanguage = "fr"
            };

            //call the commands SetParameter method - this is ususally done in Command.ExecuteAsync
            _command2.SetParameters();

            string langValue;

            Assert.IsTrue(_command2.Parameters.TryGetValue("lang", out langValue));
            Assert.AreEqual("fr", langValue);
        }