VipBeanTest.java 337 Bytes
package fi.codecrew.moya.beans;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.testng.annotations.Test;

@Test
public class VipBeanTest {
	private static final Logger log = LoggerFactory.getLogger(VipBeanTest.class);

	@Test
	public void testVip() {
		log.info("testVip");

		VipBean vipBean = new VipBean();
	}

}