File tree Expand file tree Collapse file tree 4 files changed +17
-11
lines changed
devkit-core/src/test/java/com/onixbyte/devkit/core/exceptions
devkit-utils/src/test/java/com/onixbyte/devkit/utils Expand file tree Collapse file tree 4 files changed +17
-11
lines changed Original file line number Diff line number Diff line change 1717
1818package com .onixbyte .devkit .core .exceptions ;
1919
20- import lombok .extern .slf4j .Slf4j ;
2120import org .junit .jupiter .api .Test ;
21+ import org .slf4j .Logger ;
22+ import org .slf4j .LoggerFactory ;
2223
23- @ Slf4j
2424public class NotImplementationExceptionTest {
2525
26+ private final static Logger log = LoggerFactory .getLogger (NotImplementationExceptionTest .class );
27+
2628 @ Test
2729 public void testExceptionWithEmptyConstructor () {
2830 try {
Original file line number Diff line number Diff line change 1717
1818package com .onixbyte .devkit .utils ;
1919
20- import lombok .extern .slf4j .Slf4j ;
2120import org .junit .jupiter .api .Assertions ;
2221import org .junit .jupiter .api .Test ;
22+ import org .slf4j .Logger ;
23+ import org .slf4j .LoggerFactory ;
2324
24- @ Slf4j
2525public class TestAesUtil {
2626
27+ private final static Logger log = LoggerFactory .getLogger (TestAesUtil .class );
28+
2729 @ Test
2830 public void testGenerateRandomSecret () {
2931 log .info ("Secret is {}" , AesUtil .generateRandomSecret ());
Original file line number Diff line number Diff line change 1717
1818package com .onixbyte .devkit .utils ;
1919
20- import lombok .extern .slf4j .Slf4j ;
2120import org .junit .jupiter .api .Assertions ;
2221import org .junit .jupiter .api .Test ;
22+ import org .slf4j .Logger ;
23+ import org .slf4j .LoggerFactory ;
2324
24- @ Slf4j
2525public class TestBase64Util {
2626
27+ private final static Logger log = LoggerFactory .getLogger (TestBase64Util .class );
28+
2729 @ Test
2830 public void testEncode () {
2931 Assertions .assertEquals ("SGVsbG8gV29ybGQ=" , Base64Util .encode ("Hello World" ));
Original file line number Diff line number Diff line change 1515# limitations under the License.
1616#
1717
18- jacksonVersion =2.18.0
18+ jacksonVersion =2.18.2
1919javaJwtVersion =4.4.0
20- junitVersion =5.11.2
21- logbackVersion =1.5.10
20+ junitVersion =5.11.4
21+ logbackVersion =1.5.16
2222slf4jVersion =2.0.16
23- springVersion =6.1.13
24- springBootVersion =3.3.4
23+ springVersion =6.2.1
24+ springBootVersion =3.4.1
2525
2626artefactVersion =1.8.0
2727projectUrl =https://onixbyte.com/JDevKit
You can’t perform that action at this time.
0 commit comments