Exemplo n.º 1
0
        public void expand_biller_code_from_cyberplat_opertaro_id()
        {
            var       gate     = new Gateways.EfawateerGateway();
            var       actual   = gate.ExpandBillerCodeFromCyberplatOpertaroId(700123);
            const int expected = 123;

            Assert.AreEqual(expected, actual);
        }
Exemplo n.º 2
0
        public void check()
        {
            var gate = new Gateways.EfawateerGateway();

            gate.Initialize(File.ReadAllText("initialize.xml"));

            var result = gate.CheckSettings();
            var b      = result == "OK";

            Assert.IsTrue(b);
        }
Exemplo n.º 3
0
        public void init()
        {
            var gate = new Gateways.EfawateerGateway();

            gate.Initialize(File.ReadAllText("initialize.xml"));
        }