Package org.springframework.batch.item.file.transform

Examples of org.springframework.batch.item.file.transform.LineTokenizer.tokenize()


    final String line = "TEST";
    final FieldSet fs = new DefaultFieldSet(new String[]{"token1", "token2"});
    final String item = "ITEM";
   
    LineTokenizer tokenizer = mock(LineTokenizer.class);
    when(tokenizer.tokenize(line)).thenReturn(fs);
   
    @SuppressWarnings("unchecked")
    FieldSetMapper<String> fsMapper = mock(FieldSetMapper.class);
    when(fsMapper.mapFieldSet(fs)).thenReturn(item);
   
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.