Package org.d2junit.reader

Examples of org.d2junit.reader.ExcelDataReader


     * else if (annotation instanceof LogTo) { LogTo data = (LogTo)
     * annotation; resultsTo = data.value();
     *
     * }
     */
    dataReader = new ExcelDataReader();
    if (DataUtil.dataMap.get(test.getClass().getName()) == null) {
      DataUtil.dataMap = dataReader.loadData(file);
    }
    List<String> datas = DataUtil.dataMap.get(test.getClass().getName())
        .get(frameworkMethod.getName());
View Full Code Here

TOP

Related Classes of org.d2junit.reader.ExcelDataReader

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.