Esempio n. 1
0
        public void TestWzFile()
        {
            var file = new WzFile(1, WzMapleVersion.Classic);

            using (var ms = new MemoryStream())
            {
                file.Export(ms);
                var contents = Encoding.ASCII.GetString(ms.ToArray());
                Assert.AreEqual(374, contents.Length);
            }
        }