cleanup work

This commit is contained in:
eugenp 2015-08-20 11:36:19 +03:00
parent 722b3dc99b
commit 6b10bee0a0
3 changed files with 10 additions and 4 deletions

View File

@ -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>

View File

@ -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 {

View File

@ -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 {