mirror of
https://gitee.com/chinabugotech/hutool.git
synced 2025-07-21 15:09:48 +08:00
add method
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
package cn.hutool.core.io;
|
||||
|
||||
import org.junit.Assert;
|
||||
import org.junit.Test;
|
||||
|
||||
import java.util.jar.Manifest;
|
||||
|
||||
public class ManifestUtilTest {
|
||||
|
||||
@Test
|
||||
public void getManiFestTest(){
|
||||
final Manifest manifest = ManifestUtil.getManifest(Test.class);
|
||||
Assert.assertNotNull(manifest);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user