Scalien.Users.TestGetSetSubmit C# (CSharp) Method

TestGetSetSubmit() public method

public TestGetSetSubmit ( ) : bool
return bool
        public bool TestGetSetSubmit()
        {
            // this reset tables causes a test fail
            ResetTables();

            table.Get("0000000000001");
            table.Set("0000000000001", "test");
            table.Get("0000000000002");
            table.Set("0000000000002", "test");

            clients[client_index].Submit();

            var i = table.Count(new ByteRangeParams());
            return i == 2;
        }