Enable ignored test in AbstractDelegatorTests

This commit is contained in:
Henning Poettker
2022-06-21 22:00:05 +02:00
committed by Mahmoud Ben Hassine
parent 53ebd27a5e
commit 8fefe29895

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2008-2021 the original author or authors.
* Copyright 2008-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -19,7 +19,6 @@ import java.util.ArrayList;
import java.util.List;
import org.junit.Before;
import org.junit.Ignore;
import org.junit.Test;
import org.springframework.batch.item.adapter.AbstractMethodInvokingDelegator.InvocationTargetThrowableWrapper;
@@ -98,7 +97,6 @@ public class AbstractDelegatorTests {
* Regular use - calling methods directly and via delegator leads to same results
*/
@Test
@Ignore // FIXME
public void testDelegationWithMultipleArguments() throws Exception {
FooService fooService = new FooService();
delegator.setTargetObject(fooService);