Beispiel #1
0
        public void TestSerialize()
        {
            int[]  expectedArray = new int[] { 5, 3, 4, 6, 7, 2, 1, 9, 8, 6, 7, 8, 1, 9, 5, 3, 4, 2, 9, 1, 2, 3, 4, 8, 5, 6, 7, 8, 5, 9, 4, 2, 6, 7, 1, 3, 7, 6, 1, 8, 5, 3, 9, 2, 4, 4, 2, 3, 7, 9, 1, 8, 5, 6, 9, 6, 1, 2, 8, 7, 3, 4, 5, 5, 3, 7, 4, 1, 9, 2, 8, 6, 2, 8, 4, 6, 3, 5, 1, 7, 9 };
            string expected      = "534672198678195342912348567859426713761853924423791856961287345537419286284635179";

            MatchfieldStoreService matchfieldStoreService = new MatchfieldStoreService(tempPath);

            Type         type        = matchfieldStoreService.GetType();
            BindingFlags bindingAttr = BindingFlags.NonPublic | BindingFlags.Instance;
            MethodInfo   method      = type.GetMethod("Serialize", bindingAttr);
            var          actual      = (string)method.Invoke(matchfieldStoreService, new object[] { matchfield });

            Assert.AreEqual(expected, actual);
        }
Beispiel #2
0
        public void TestDeserialize()
        {
            string data = "534672198678195342912348567859426713761853924423791856961287345537419286284635179";

            MatchfieldStoreService matchfieldStoreService = new MatchfieldStoreService(tempPath);

            Type         type        = matchfieldStoreService.GetType();
            BindingFlags bindingAttr = BindingFlags.NonPublic | BindingFlags.Instance;
            MethodInfo   method      = type.GetMethod("Deserialize", bindingAttr);
            var          squares     = (Square[])method.Invoke(matchfieldStoreService, new object[] { data });

            Matchfield tempMatchfield = new Matchfield(squares);

            Assert.AreEqual(9, squares.Length);


            method = type.GetMethod("Serialize", bindingAttr);
            var actual = (string)method.Invoke(matchfieldStoreService, new object[] { tempMatchfield });

            Assert.AreEqual(data, actual);
        }