com.qa.framework.verify.IExpectResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of smart-api-framework Show documentation
Show all versions of smart-api-framework Show documentation
Support web service api automaton test based on testng and httpclient
package com.qa.framework.verify;
/**
* 预期结果类
* Created by apple on 15/11/18.
*/
public interface IExpectResult {
/**
* Compare real.
*
* @param content the content
*/
void compareReal(String content);
}