Beispiel #1
0
        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);
        }