From 5e43980b80edb327d284345ee6e240b06d43f72a Mon Sep 17 00:00:00 2001 From: heck Date: Sun, 2 May 2021 14:26:44 +0200 Subject: [PATCH] Tests: TestModel - Add emum Role --- .../pEp/jniadapter/test/utils/model/Role.java | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 test/java/foundation/pEp/jniadapter/test/utils/model/Role.java diff --git a/test/java/foundation/pEp/jniadapter/test/utils/model/Role.java b/test/java/foundation/pEp/jniadapter/test/utils/model/Role.java new file mode 100644 index 0000000..82e8c0e --- /dev/null +++ b/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"; + } + }; +}