@Test
public void testCreateQueryWithStartsWithClauseUsingCollection() throws NoSuchMethodException, SecurityException {
Method method = SampleRepository.class.getMethod("findByTitleStartingWith", Collection.class);
Query query = createQueryForMethodWithArgs(method, new Object[] { Arrays.asList("one", "two", "three") });
Assert.assertEquals("title:(one* two* three*)", queryParser.getQueryString(query));
}