mirror of
https://github.com/frosch95/SmartCSV.fx.git
synced 2026-04-11 13:38:23 +02:00
fixed broken test
This commit is contained in:
@@ -5,6 +5,7 @@ import org.junit.Before;
|
|||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
|
|
||||||
import static org.mockito.Matchers.anyInt;
|
import static org.mockito.Matchers.anyInt;
|
||||||
|
import static org.mockito.Matchers.eq;
|
||||||
import static org.mockito.Mockito.mock;
|
import static org.mockito.Mockito.mock;
|
||||||
import static org.mockito.Mockito.verify;
|
import static org.mockito.Mockito.verify;
|
||||||
|
|
||||||
@@ -54,6 +55,6 @@ public class CSVValueTest {
|
|||||||
sut.setValue(VALUE);
|
sut.setValue(VALUE);
|
||||||
|
|
||||||
// assertion
|
// assertion
|
||||||
verify(validator).isValid(COLUMN, VALUE, anyInt());
|
verify(validator).isValid(eq(COLUMN), eq(VALUE), anyInt());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user