View Javadoc
1   package org.kuali.common.util.metainf.service;
2   
3   import org.junit.Test;
4   
5   public class MainUtilsTest {
6   
7   	@Test
8   	public void test() {
9   		try {
10  			SimpleMain.main(null);
11  		} catch (Exception e) {
12  			e.printStackTrace();
13  		}
14  	}
15  }