mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
Fix warnings 2 (#1130)
* FIX: warnings (add generics, overrides, fix imports) - should be no effecive code change * replaced deprecated methods by default methods * FIX: more compiler warnings * FIX more warnings - no code changes * FIX: deprecated call to JsonParseException * Remove unused code, check unused variables
This commit is contained in:
committed by
Rob Bygrave
parent
ac6708e0d0
commit
b66f18bfd6
@@ -7,6 +7,8 @@ import org.tests.basic.encrypt.BasicEncryptKey;
|
||||
import org.junit.Assert;
|
||||
import org.junit.Test;
|
||||
|
||||
import static org.assertj.core.api.Assertions.assertThat;
|
||||
|
||||
import java.sql.Timestamp;
|
||||
|
||||
public class TestSimpleEncryptor extends BaseTestCase {
|
||||
@@ -23,6 +25,8 @@ public class TestSimpleEncryptor extends BaseTestCase {
|
||||
byte[] ecData = e.encrypt(data, key);
|
||||
|
||||
byte[] deData = e.decrypt(ecData, key);
|
||||
|
||||
assertThat(data).containsExactly(deData);
|
||||
|
||||
Timestamp t = new Timestamp(System.currentTimeMillis());
|
||||
byte[] ecTimestamp = e.encryptString(t.toString(), key);
|
||||
|
||||
Reference in New Issue
Block a user