All Downloads are FREE. Search and download functionalities are using the official Maven repository.

junitparams.mappers.CsvWithHeaderMapper Maven / Gradle / Ivy

There is a newer version: 1.1.1
Show newest version
package junitparams.mappers;

import java.io.*;
import java.util.*;

/**
 * Reads a CSV file starting from the second line - the first one is supposed to
 * be a header. If you don't want to skip the first line, use @FilePatameters
 * without any mapper.
 * 
 * @author Pawel Lipinski
 * 
 */
public class CsvWithHeaderMapper extends BufferedReaderDataMapper {

    public CsvWithHeaderMapper() {
        super(1);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy