Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add unit test code #4748 #4815

Open
wants to merge 2 commits into
base: develop
Choose a base branch
from
Open
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));
}
}
Loading