BAEL-5158: Sample App and Unit test for finding ObjectMapper class in a jar.
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
package com.baeldung.jar;
|
||||
|
||||
import org.junit.Assert;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class JarAppUnitTest {
|
||||
|
||||
@Test
|
||||
public void findClassTest(){
|
||||
Assert.assertTrue(JarApp.findObjectMapperClass().endsWith("jackson-databind-2.13.0.jar"));
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user