예제 #1
0
        public void getEstablecimiento_Found()
        {
            var proxy = new RenaesProxy();

            var establecimiento = proxy.getEstablecimiento("6623");

            Assert.IsNotNull(establecimiento);
        }
예제 #2
0
        public void getEstablecimiento_NotFound()
        {
            var proxy = new RenaesProxy();

            var establecimiento = proxy.getEstablecimiento("190999");

            Assert.IsNull(establecimiento);
        }