/* * Decompiled with CFR 0.152. */ package net.minecraft.gametest.framework; import java.util.Collection; import net.minecraft.core.Holder; import net.minecraft.gametest.framework.GameTestInfo; import net.minecraft.gametest.framework.TestEnvironmentDefinition; public record GameTestBatch(int index, Collection gameTestInfos, Holder environment) { public GameTestBatch { if (gameTestInfos.isEmpty()) { throw new IllegalArgumentException("A GameTestBatch must include at least one GameTestInfo!"); } } }