| Package | Description |
|---|---|
| org.easetech.easytest.io |
The I/O package of EasyTest for easy Resource Loading strategies
|
| org.easetech.easytest.loader |
package containing various Loaders part of the easytest framework and related classes
|
| Modifier and Type | Class and Description |
|---|---|
class |
ClasspathResource
An instance of
Resource interface for handling Classpath resources. |
class |
EmptyResource
An empty implementation of the resource, useful in cases where the user loads the data from Java Class
and thus does not require to load a resource explicitly
|
class |
FileSystemResource
A FileSystem based
Resource implementation. |
class |
UrlResource
A
Resource implementation for the URL based resources. |
| Modifier and Type | Method and Description |
|---|---|
Resource |
ResourceLoaderStrategy.getResource(String location)
Get the resource based on the location.
|
Resource |
ResourceLoader.getResource(String location)
Get the
Resource instance based on the location |
| Modifier and Type | Method and Description |
|---|---|
Map<String,List<Map<String,Object>>> |
XMLDataLoader.loadData(Resource resource)
Load the data from the given resource
|
Map<String,List<Map<String,Object>>> |
Loader.loadData(Resource resource)
Method responsible to Load the test data from the
Resource instance passed as parameter |
Map<String,List<Map<String,Object>>> |
ExcelDataLoader.loadData(Resource resource)
Main entry point for the Loader
|
Map<String,List<Map<String,Object>>> |
EmptyLoader.loadData(Resource resource) |
Map<String,List<Map<String,Object>>> |
CSVDataLoader.loadData(Resource resource)
Load the data for the given Resource
|
void |
XMLDataLoader.writeData(Resource resource,
Map<String,List<Map<String,Object>>> actualData,
String... methodNames)
Write Data to the existing XML File.
|
void |
Loader.writeData(Resource resource,
Map<String,List<Map<String,Object>>> actualData,
String... methodNames)
Method responsible for writing the test data and actual result back to the file
|
void |
ExcelDataLoader.writeData(Resource resource,
Map<String,List<Map<String,Object>>> actualData,
String... methodNames)
Write the data back to the file that is represented by the Resource instance
|
void |
EmptyLoader.writeData(Resource resource,
Map<String,List<Map<String,Object>>> actualData,
String... methodNames) |
void |
CSVDataLoader.writeData(Resource resource,
Map<String,List<Map<String,Object>>> actualData,
String... methodNames)
Write the data back to the file that is represented by the Resource instance
|
Copyright © 2014. All rights reserved.