public void The_decorated_operation_provides_the_child_operations(IOperation op1, IOperation op2)
        {
            var operation = new FakeOperation(op1, op2);
            var sut       = new TestBehavior().AttachTo(operation);

            var result = sut.GetChildOperations();

            Assert.Equal(operation.GetChildOperations(), result);
        }