gcat/src/test/java/org/gcube/gcat/oldutils/ValidatorTest.java

23 lines
551 B
Java

package org.gcube.gcat.oldutils;
import org.gcube.gcat.ContextTest;
import org.gcube.informationsystem.model.impl.properties.EncryptedImpl;
import org.junit.Assert;
import org.junit.Test;
public class ValidatorTest extends ContextTest {
@Test
public void testPWd() throws Exception {
String pwd = EncryptedImpl.decrypt("");
Assert.assertTrue(true);
}
@Test
public void createGroupAsSysAdmin() throws Exception {
String groupName = "Italian";
Validator validator = new Validator();
validator.createGroupAsSysAdmin(groupName);
}
}