Fix createSection getting sections from itself. Fixes BUKKIT-1513

By: feildmaster <admin@feildmaster.com>
This commit is contained in:
Bukkit/Spigot
2012-04-13 10:19:45 -05:00
parent e700def943
commit e115cf3efa
2 changed files with 22 additions and 1 deletions

View File

@@ -3,7 +3,9 @@ package org.bukkit.configuration;
import java.util.LinkedHashMap;
import java.util.Arrays;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Map;
import java.util.Set;
import org.bukkit.util.Vector;
import org.junit.Test;
import static org.junit.Assert.*;
@@ -120,6 +122,25 @@ public abstract class ConfigurationTest {
}
}
/**
* Test creation of ConfigurationSection
*/
@Test
public void testCreateSection() {
Configuration config = getConfig();
Set<String> set = new HashSet<String>();
set.add("this");
set.add("this.test.sub");
set.add("this.test");
set.add("this.test.other");
config.createSection("this.test.sub");
config.createSection("this.test.other");
assertEquals(set, config.getKeys(true));
}
/**
* Test of getDefaults method, of class Configuration.
*/