Exemplo n.º 1
0
        public void TestGenerator()
        {
            UserWalletAccount account = new UserWalletAccount(UInt160.Zero);

            Assert.IsNotNull(account);
        }
Exemplo n.º 2
0
        public void TestGetKey()
        {
            UserWalletAccount account = new UserWalletAccount(UInt160.Zero);

            Assert.AreEqual(null, account.GetKey());
        }
Exemplo n.º 3
0
        public void TestGetHasKey()
        {
            UserWalletAccount account = new UserWalletAccount(UInt160.Zero);

            Assert.AreEqual(false, account.HasKey);
        }
Exemplo n.º 4
0
        public void TestGenerator()
        {
            UserWalletAccount account = new UserWalletAccount(UInt160.Zero, ProtocolSettings.Default);

            Assert.IsNotNull(account);
        }
Exemplo n.º 5
0
        public void TestGetKey()
        {
            UserWalletAccount account = new UserWalletAccount(UInt160.Zero, ProtocolSettings.Default);

            Assert.AreEqual(null, account.GetKey());
        }
Exemplo n.º 6
0
        public void TestGetHasKey()
        {
            UserWalletAccount account = new UserWalletAccount(UInt160.Zero, ProtocolSettings.Default);

            Assert.AreEqual(false, account.HasKey);
        }