Deveel.Data.SelectBlobTests.SelectBlobTests C# (CSharp) Method

SelectBlobTests() public method

public SelectBlobTests ( ) : System
return System
        public SelectBlobTests()
        {
            var random = new Random();
            testData = new byte[2048];
            for (int i = 0; i < testData.Length; i++) {
                testData[i] = (byte) random.Next();
            }
        }