public void ConstructorWithLengthSetExpectedLength()
        {
            const int length = 2;
            _volatile = new Volatile.BooleanArray(length);

            Assert.AreEqual(length, _volatile.Length);
        }
예제 #2
0
        public void ConstructorWithLengthSetExpectedLength()
        {
            const int length = 2;

            _volatile = new Volatile.BooleanArray(length);

            Assert.AreEqual(length, _volatile.Length);
        }
 public void SetUp()
 {
     _volatile = new Volatile.BooleanArray(InitialValues);
 }
예제 #4
0
 public void SetUp()
 {
     _volatile = new Volatile.BooleanArray(InitialValues);
 }