Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@

import net.rptools.dicelib.expression.RunData;
import net.rptools.parser.function.EvaluationException;
import org.antlr.v4.codegen.target.Python2Target;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;

public class DiceHelperTest {
Expand Down Expand Up @@ -73,4 +75,26 @@ public void testExplodeDice_Exception() throws Exception {
} catch (EvaluationException e) {
}
}
}

@Test
public void explodingSuccessDiceTest() throws Exception{
RunData.setCurrent(new RunData(null));
RunData.setSeed(102312L);

assertEquals("Dice: 1, 10, 1, 11, 4, Successes: 3", DiceHelper.explodingSuccessDice(5,6, 3, -1));
}
@Test
public void rerollDiceOnceTest() throws Exception{
RunData.setCurrent(new RunData(null));
RunData.setSeed(102312L);

assertEquals(16, DiceHelper.rerollDice(3,6,2));
}
@Test
public void countShadowRunTest(){
RunData.setCurrent(new RunData(null));
RunData.setSeed(102312L);

assertEquals("Hits: 3 Ones: 2 *Gremlin Glitch* Results: 1 6 4 1 6 5 4 ", DiceHelper.countShadowRun(5, 30, true, DiceHelper.ShadowrunEdition.EDITION_5));
}
}