Commits
md_5 authored fb23cbb3829
1 1 | package org.bukkit.metadata; |
2 2 | |
3 3 | import static org.junit.jupiter.api.Assertions.*; |
4 4 | import java.util.List; |
5 5 | import java.util.concurrent.Callable; |
6 6 | import org.bukkit.plugin.Plugin; |
7 7 | import org.bukkit.plugin.TestPlugin; |
8 - | import org.junit.jupiter.api.MethodOrderer; |
9 8 | import org.junit.jupiter.api.Test; |
10 - | import org.junit.jupiter.api.TestMethodOrder; |
11 9 | |
12 - | MethodOrderer.MethodName.class) | (
13 10 | public class MetadataStoreTest { |
14 11 | private Plugin pluginX = new TestPlugin("x"); |
15 12 | private Plugin pluginY = new TestPlugin("y"); |
16 13 | |
17 14 | StringMetadataStore subject = new StringMetadataStore(); |
18 15 | |
19 16 | |
20 17 | public void testMetadataStore() { |
21 18 | subject.setMetadata("subject", "key", new FixedMetadataValue(pluginX, 10)); |
22 19 | |