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

net.sf.ahtutils.test.UtilsAssert Maven / Gradle / Ivy

package net.sf.ahtutils.test;

import net.sf.exlp.util.xml.JaxbUtil;

import org.junit.Assert;

public class UtilsAssert
{
	protected void jaxb(Object expected, Object actual)
	{
		Assert.assertEquals("XML-expected differes from XML-actual",JaxbUtil.toString(expected),JaxbUtil.toString(actual));
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy