use of com.tvd12.ezyfoxserver.response.EzyPluginInfoResponse in project ezyfox-server by youngmonkeys.
the class EzyPluginInfoResponseTest method test.
@Test
public void test() {
EzySimplePluginSetting setting = new EzySimplePluginSetting();
setting.setName("test");
EzyPluginInfoParams params = new EzyPluginInfoParams();
params.setPlugin(setting);
assert params.getPlugin() == setting;
EzyPluginInfoResponse response = new EzyPluginInfoResponse(params);
assert response.getParams() == params;
response.serialize();
response.release();
}
Aggregations