feat: implemented aquiring characters of random order in CharacterConfig

This commit is contained in:
2021-06-06 03:21:21 +02:00
parent e9640a9a8a
commit 29db6c018c
2 changed files with 31 additions and 1 deletions

View File

@ -4,9 +4,12 @@ import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.ObjectMapper;
import net.jqwik.api.*;
import net.jqwik.api.lifecycle.BeforeProperty;
import org.junit.jupiter.api.Test;
import uulm.teamname.marvelous.gamelibrary.config.CharacterConfig;
import uulm.teamname.marvelous.gamelibrary.config.CharacterProperties;
import uulm.teamname.marvelous.gamelibrary.json.JSON;
import java.util.Arrays;
import java.util.HashSet;
import java.util.concurrent.ThreadLocalRandom;
@ -260,6 +263,18 @@ class CharacterConfigJSONTest {
}
""";
@Test
void disjointSubsetGenerationWorks() {
var characterConfig = JSON.parseCharacterConfig(json);
System.out.println(characterConfig.get().characters.length);
var tuple = characterConfig.get().getDisjointSetsOfPropertiesOfSize(6);
assertThat(tuple.item1).doesNotHaveDuplicates().hasSize(6);
assertThat(tuple.item2).doesNotHaveDuplicates().hasSize(6);
assertThat(tuple.item1)
.doesNotContainAnyElementsOf(Arrays.asList(tuple.item2));
System.out.println(tuple);
}
ObjectMapper mapper;
@BeforeProperty