コード例 #1
0
ファイル: MiddleTierTests.cs プロジェクト: royedwards/DRDNet
        public void MiddleTier_SendInterface_WithArgs()
        {
            List <long> listLongs = WebServiceTests.SendInterfaceParamWithArgs(true, listArgLongs: new List <long>()
            {
                6, 2, 9
            });

            Assert.AreEqual(listLongs.Count, 3);
            Assert.AreEqual(listLongs[0], 6);
            Assert.AreEqual(listLongs[1], 2);
            Assert.AreEqual(listLongs[2], 9);
        }