Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,14 @@

package com.onixbyte.devkit.core.exceptions;

import lombok.extern.slf4j.Slf4j;
import org.junit.jupiter.api.Test;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

@Slf4j
public class NotImplementationExceptionTest {

private final static Logger log = LoggerFactory.getLogger(NotImplementationExceptionTest.class);

@Test
public void testExceptionWithEmptyConstructor() {
try {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,15 @@

package com.onixbyte.devkit.utils;

import lombok.extern.slf4j.Slf4j;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Test;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

@Slf4j
public class TestAesUtil {

private final static Logger log = LoggerFactory.getLogger(TestAesUtil.class);

@Test
public void testGenerateRandomSecret() {
log.info("Secret is {}", AesUtil.generateRandomSecret());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,15 @@

package com.onixbyte.devkit.utils;

import lombok.extern.slf4j.Slf4j;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Test;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

@Slf4j
public class TestBase64Util {

private final static Logger log = LoggerFactory.getLogger(TestBase64Util.class);

@Test
public void testEncode() {
Assertions.assertEquals("SGVsbG8gV29ybGQ=", Base64Util.encode("Hello World"));
Expand Down
10 changes: 5 additions & 5 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@
# limitations under the License.
#

jacksonVersion=2.18.0
jacksonVersion=2.18.2
javaJwtVersion=4.4.0
junitVersion=5.11.2
logbackVersion=1.5.10
junitVersion=5.11.4
logbackVersion=1.5.16
slf4jVersion=2.0.16
springVersion=6.1.13
springBootVersion=3.3.4
springVersion=6.2.1
springBootVersion=3.4.1

artefactVersion=1.8.0
projectUrl=https://onixbyte.com/JDevKit
Expand Down