本文整理匯總了Java中uk.gov.gchq.koryphe.tuple.predicate.TupleAdaptedPredicate.setInputAdapter方法的典型用法代碼示例。如果您正苦於以下問題:Java TupleAdaptedPredicate.setInputAdapter方法的具體用法?Java TupleAdaptedPredicate.setInputAdapter怎麽用?Java TupleAdaptedPredicate.setInputAdapter使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類uk.gov.gchq.koryphe.tuple.predicate.TupleAdaptedPredicate
的用法示例。
在下文中一共展示了TupleAdaptedPredicate.setInputAdapter方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: shouldJsonSerialiseAndDeserialise
import uk.gov.gchq.koryphe.tuple.predicate.TupleAdaptedPredicate; //導入方法依賴的package包/類
@Test
public void shouldJsonSerialiseAndDeserialise() throws IOException {
// set up a tuple validate
TupleAdaptedPredicate<String, Object> predicate = new TupleAdaptedPredicate<>();
Predicate<Object> function = new MockPredicateObject();
predicate.setPredicate(function);
Function<Tuple<String>, Object> inputAdapter = new TupleInputAdapter<>();
predicate.setInputAdapter(inputAdapter);
String json = JsonSerialiser.serialise(predicate);
TupleAdaptedPredicate<String, Object> deserialisedPredicate = JsonSerialiser.deserialise(json, TupleAdaptedPredicate.class);
assertNotSame(predicate, deserialisedPredicate);
Predicate deserialisedFunction = deserialisedPredicate.getPredicate();
assertNotSame(function, deserialisedFunction);
Function<Tuple<String>, Object> deserialisedInputAdapter = deserialisedPredicate.getInputAdapter();
assertNotSame(inputAdapter, deserialisedInputAdapter);
assertTrue(deserialisedInputAdapter instanceof Function);
}
示例2: testSingleFunctionTransformation
import uk.gov.gchq.koryphe.tuple.predicate.TupleAdaptedPredicate; //導入方法依賴的package包/類
@Test
public void testSingleFunctionTransformation() {
String input = "input";
TupleAdaptedPredicate<String, String> predicate = new TupleAdaptedPredicate<>();
Function<Tuple<String>, String> inputAdapter = mock(Function.class);
predicate.setInputAdapter(inputAdapter);
Predicate<String> function = mock(Predicate.class);
predicate.setPredicate(function);
Tuple<String> tuple = mock(Tuple.class);
// set up mocks
given(inputAdapter.apply(tuple)).willReturn(input);
given(function.test(input)).willReturn(true);
// validate
assertTrue(predicate.test(tuple));
// function should have been tested
verify(inputAdapter, times(1)).apply(tuple);
verify(function, times(1)).test(input);
// switch to fail
given(function.test(input)).willReturn(false);
// and try again
assertFalse(predicate.test(tuple));
// function should have been tested again
verify(inputAdapter, times(2)).apply(tuple);
verify(function, times(2)).test(input);
}