public void ConstructorWithLengthSetExpectedLength()
        {
            const int length = 2;

            _volatile = new _Volatile.ReferenceArray <ClassStub>(length);

            Assert.AreEqual(length, _volatile.Length);
        }
 public void SetUp()
 {
     _volatile = new _Volatile.ReferenceArray <ClassStub>(InitialValues);
 }