Package cuke4duke

Examples of cuke4duke.CellConverter


        return hash;
    }

    @Given("a table that we convert:")
    public void convertTable(Table t) {
        t.mapColumn("b", new CellConverter() {
            public String convertCell(String cellValue) {
                return "converted_" + cellValue;
            }
        });
        t.mapHeaders(new HashMap<Object, String>() {{
View Full Code Here

TOP

Related Classes of cuke4duke.CellConverter

Copyright © 2018 www.massapicom. 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.