コード例 #1
0
        public void Read__Reading_A_Valid_BoolType()
        {
            byte[] data = File.ReadAllBytes("Content/Tests/BoolType/BoolType-Data.bin");

            BoolType boolType = new BoolType();
            boolType.Read(data);

            Assert.IsTrue(boolType.Value);
        }