Browse Source

Tests: TestModel - Add emum Role

JNI-153
heck 4 years ago
parent
commit
5e43980b80
  1. 19
      test/java/foundation/pEp/jniadapter/test/utils/model/Role.java

19
test/java/foundation/pEp/jniadapter/test/utils/model/Role.java

@ -0,0 +1,19 @@
package foundation.pEp.jniadapter.test.utils.model;
public enum Role {
ALICE() {
public String toString() {
return "alice";
}
},
BOB() {
public String toString() {
return "bob";
}
},
CAROL() {
public String toString() {
return "carol";
}
};
}
Loading…
Cancel
Save