Exercise short-stack calibration paths

This commit is contained in:
Jay
2026-07-26 16:40:06 -04:00
parent 4d8a62afb6
commit 369b1f59d4
11 changed files with 164 additions and 10 deletions
@@ -30,6 +30,11 @@ class ActionButtonsTest {
stack = stack,
canCheck = canCheck,
canRaise = canRaise,
activeOpponents = 1,
seatsActingAfter = 0,
bigBlind = 2,
eligiblePot = 40,
currentBet = if (canCheck) 0 else toCall,
)
// ---------- the raise omission ----------
@@ -114,6 +119,11 @@ class CallCostTest {
stack = stack,
canCheck = false,
canRaise = false,
activeOpponents = 1,
seatsActingAfter = 0,
bigBlind = 2,
eligiblePot = 100,
currentBet = toCall,
)
/**
@@ -50,6 +50,11 @@ class LiveOfferTest {
stack = 500,
canCheck = false,
canRaise = true,
activeOpponents = 1,
seatsActingAfter = 0,
bigBlind = 2,
eligiblePot = 40,
currentBet = 10,
)
@Test