Esempio n. 1
0
        public void Save_empty_beyond_reasonable_size_does_not_throw()
        {
            IEvmMemory memory = CreateEvmMemory();
            UInt256    dest   = (UInt256)int.MaxValue + 1;

            memory.Save(ref dest, new byte[0]);
        }
        public void Save_empty_beyond_reasonable_size_does_not_throw()
        {
            IEvmMemory memory = CreateEvmMemory();

            memory.Save((BigInteger)int.MaxValue + 1, new byte[0]);
        }