public void BBlocked_WhenDeleteValidated_ReturnsTrue()
        {
            //Arrange: a instruction is created
            BInstruction instruction = new BInstruction();

            //Act: The instruction is checked if it is update valid.
            bool valid = instruction.DeleteValid();

            //Assert: The instruction is valid for updating.
            Assert.AreEqual(true, valid);
        }