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

jasmine.framework.test.liquibase.loader.TestDataLoader Maven / Gradle / Ivy

There is a newer version: 1.3.8
Show newest version
package jasmine.framework.test.liquibase.loader;

import org.springframework.context.ApplicationContext;

import java.io.InputStream;

/**
 * 

* 测试数据加载器。 *

* * @author mh.z */ public interface TestDataLoader { /** * 初始 * * @param applicationContext * @param type */ void init(ApplicationContext applicationContext, Class type); /** * 加载数据 * * @param resourcePath * @param inputStream */ void load(String resourcePath, InputStream inputStream); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy