• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package junitparams.mappers;
2 
3 import java.io.*;
4 import java.util.*;
5 
6 /**
7  * A mapper, that maps contents of a file to a set of parameters for test
8  * methods. Basically a CSV with no header and ordering of columns exactly like
9  * the one in the test methods.
10  *
11  * It uses the logic from @Parameters({}) for parsing lines of file, so be sure
12  * the columns in the file match exactly the ordering of arguments in the test
13  * method.
14  *
15  * @author Pawel Lipinski
16  *
17  */
18 public class IdentityMapper extends BufferedReaderDataMapper{
19 
20 }
21