cleanup work
This commit is contained in:
parent
722b3dc99b
commit
6b10bee0a0
|
@ -28,6 +28,12 @@
|
||||||
<version>4.0</version>
|
<version>4.0</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
|
<dependency>
|
||||||
|
<groupId>commons-codec</groupId>
|
||||||
|
<artifactId>commons-codec</artifactId>
|
||||||
|
<version>1.10</version>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.apache.commons</groupId>
|
<groupId>org.apache.commons</groupId>
|
||||||
<artifactId>commons-lang3</artifactId>
|
<artifactId>commons-lang3</artifactId>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package com.demo.encoding;
|
package org.baeldung.java8.base64;
|
||||||
|
|
||||||
import static org.junit.Assert.assertEquals;
|
import static org.junit.Assert.assertEquals;
|
||||||
import static org.junit.Assert.assertNotEquals;
|
import static org.junit.Assert.assertNotEquals;
|
||||||
|
@ -9,7 +9,7 @@ import java.io.UnsupportedEncodingException;
|
||||||
import org.apache.commons.codec.binary.Base64;
|
import org.apache.commons.codec.binary.Base64;
|
||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
|
|
||||||
public class ApacheCommonsEncodeDecode {
|
public class ApacheCommonsEncodeDecodeTest {
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void whenStringIsEncoded() throws UnsupportedEncodingException {
|
public void whenStringIsEncoded() throws UnsupportedEncodingException {
|
|
@ -1,4 +1,4 @@
|
||||||
package com.demo.encoding;
|
package org.baeldung.java8.base64;
|
||||||
|
|
||||||
import static org.junit.Assert.assertEquals;
|
import static org.junit.Assert.assertEquals;
|
||||||
import static org.junit.Assert.assertNotEquals;
|
import static org.junit.Assert.assertNotEquals;
|
||||||
|
@ -10,7 +10,7 @@ import java.util.UUID;
|
||||||
|
|
||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
|
|
||||||
public class Java8EncodeDecode {
|
public class Java8EncodeDecodeTest {
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void whenStringIsEncoded() throws UnsupportedEncodingException {
|
public void whenStringIsEncoded() throws UnsupportedEncodingException {
|
Loading…
Reference in New Issue