1package junitparams.mappers;
2
3import java.io.*;
4import java.util.*;
5
6/**
7 * Reads a CSV file starting from the second line - the first one is supposed to
8 * be a header. If you don't want to skip the first line, use @FilePatameters
9 * without any mapper.
10 *
11 * @author Pawel Lipinski
12 *
13 */
14public class CsvWithHeaderMapper extends BufferedReaderDataMapper {
15
16    public CsvWithHeaderMapper() {
17        super(1);
18    }
19}
20