From 960d2ea6f70d1f38e269e711aff3877c4bb5430c Mon Sep 17 00:00:00 2001 From: anthonycampbell Date: Thu, 8 Mar 2018 15:52:35 -0800 Subject: [PATCH] solution to issue #602. Implemented multiton with enum, added example to app.java, a test for the enum, and commented my code --- .../com/iluwatar/multiton/NazgulEnum.java | 33 ++++++++++++ .../com/iluwatar/multiton/NazgulEnumTest.java | 50 +++++++++++++++++++ 2 files changed, 83 insertions(+) create mode 100644 multiton/src/main/java/com/iluwatar/multiton/NazgulEnum.java create mode 100644 multiton/src/test/java/com/iluwatar/multiton/NazgulEnumTest.java diff --git a/multiton/src/main/java/com/iluwatar/multiton/NazgulEnum.java b/multiton/src/main/java/com/iluwatar/multiton/NazgulEnum.java new file mode 100644 index 000000000..375176c4f --- /dev/null +++ b/multiton/src/main/java/com/iluwatar/multiton/NazgulEnum.java @@ -0,0 +1,33 @@ +/** + * The MIT License + * Copyright (c) 2014-2016 Ilkka Seppälä + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. + */ +package com.iluwatar.multiton; + +/** + * enum based multiton implementation + * + */ +public enum NazgulEnum { + + KHAMUL, MURAZOR, DWAR, JI_INDUR, AKHORAHIL, HOARMURATH, ADUNAPHEL, REN, UVATHA; + +} diff --git a/multiton/src/test/java/com/iluwatar/multiton/NazgulEnumTest.java b/multiton/src/test/java/com/iluwatar/multiton/NazgulEnumTest.java new file mode 100644 index 000000000..b718b9c68 --- /dev/null +++ b/multiton/src/test/java/com/iluwatar/multiton/NazgulEnumTest.java @@ -0,0 +1,50 @@ +/** + * The MIT License + * Copyright (c) 2014-2016 Ilkka Seppälä + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. + */ +package com.iluwatar.multiton; + +import static org.junit.jupiter.api.Assertions.*; + +import org.junit.jupiter.api.Test; + +/** + * @author anthony + * + */ +class NazgulEnumTest { + + /** + * Check that multiple calls to any one of the instances in the multiton returns + * only that one particular instance, and do that for all instances in multiton + */ + @Test + public void testTheSameObjectIsReturnedWithMultipleCalls() { + for (int i = 0; i < NazgulEnum.values().length; i++) { + NazgulEnum instance1 = NazgulEnum.values()[i]; + NazgulEnum instance2 = NazgulEnum.values()[i]; + NazgulEnum instance3 = NazgulEnum.values()[i]; + assertSame(instance1, instance2); + assertSame(instance1, instance3); + assertSame(instance2, instance3); + } + } +}