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 17
17
18
18
package com .onixbyte .devkit .core .exceptions ;
19
19
20
- import lombok .extern .slf4j .Slf4j ;
21
20
import org .junit .jupiter .api .Test ;
21
+ import org .slf4j .Logger ;
22
+ import org .slf4j .LoggerFactory ;
22
23
23
- @ Slf4j
24
24
public class NotImplementationExceptionTest {
25
25
26
+ private final static Logger log = LoggerFactory .getLogger (NotImplementationExceptionTest .class );
27
+
26
28
@ Test
27
29
public void testExceptionWithEmptyConstructor () {
28
30
try {
Original file line number Diff line number Diff line change 17
17
18
18
package com .onixbyte .devkit .utils ;
19
19
20
- import lombok .extern .slf4j .Slf4j ;
21
20
import org .junit .jupiter .api .Assertions ;
22
21
import org .junit .jupiter .api .Test ;
22
+ import org .slf4j .Logger ;
23
+ import org .slf4j .LoggerFactory ;
23
24
24
- @ Slf4j
25
25
public class TestAesUtil {
26
26
27
+ private final static Logger log = LoggerFactory .getLogger (TestAesUtil .class );
28
+
27
29
@ Test
28
30
public void testGenerateRandomSecret () {
29
31
log .info ("Secret is {}" , AesUtil .generateRandomSecret ());
Original file line number Diff line number Diff line change 17
17
18
18
package com .onixbyte .devkit .utils ;
19
19
20
- import lombok .extern .slf4j .Slf4j ;
21
20
import org .junit .jupiter .api .Assertions ;
22
21
import org .junit .jupiter .api .Test ;
22
+ import org .slf4j .Logger ;
23
+ import org .slf4j .LoggerFactory ;
23
24
24
- @ Slf4j
25
25
public class TestBase64Util {
26
26
27
+ private final static Logger log = LoggerFactory .getLogger (TestBase64Util .class );
28
+
27
29
@ Test
28
30
public void testEncode () {
29
31
Assertions .assertEquals ("SGVsbG8gV29ybGQ=" , Base64Util .encode ("Hello World" ));
Original file line number Diff line number Diff line change 15
15
# limitations under the License.
16
16
#
17
17
18
- jacksonVersion =2.18.0
18
+ jacksonVersion =2.18.2
19
19
javaJwtVersion =4.4.0
20
- junitVersion =5.11.2
21
- logbackVersion =1.5.10
20
+ junitVersion =5.11.4
21
+ logbackVersion =1.5.16
22
22
slf4jVersion =2.0.16
23
- springVersion =6.1.13
24
- springBootVersion =3.3.4
23
+ springVersion =6.2.1
24
+ springBootVersion =3.4.1
25
25
26
26
artefactVersion =1.8.0
27
27
projectUrl =https://onixbyte.com/JDevKit
You can’t perform that action at this time.
0 commit comments