Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
Blackjack
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Pascal Engeler
Blackjack
Commits
a4eb87c5
Commit
a4eb87c5
authored
2 years ago
by
Flavia Taras
Browse files
Options
Downloads
Patches
Plain Diff
deleted some comments
parent
99fc7b84
Branches
main
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
unit-tests/player.cpp
+0
-9
0 additions, 9 deletions
unit-tests/player.cpp
with
0 additions
and
9 deletions
unit-tests/player.cpp
+
0
−
9
View file @
a4eb87c5
...
@@ -94,13 +94,6 @@ TEST_F(PlayerTest, SetUpRound) {
...
@@ -94,13 +94,6 @@ TEST_F(PlayerTest, SetUpRound) {
EXPECT_FALSE
(
player_
->
has_finished_turn
());
EXPECT_FALSE
(
player_
->
has_finished_turn
());
}
}
//todo
// Setting up a new round for a broke player should not be possible
TEST_F
(
PlayerTest
,
SetUpRoundBroke
)
{
set_money
(
*
player_
,
0
);
EXPECT_THROW
(
player_
->
setup_round
(
err
),
BlackjackException
);
}
// After winning a round, the new amount of money has to be computed
// After winning a round, the new amount of money has to be computed
// and nothing else changes
// and nothing else changes
TEST_F
(
PlayerTest
,
WonRound
)
{
TEST_F
(
PlayerTest
,
WonRound
)
{
...
@@ -151,7 +144,6 @@ TEST_F(PlayerTest, MakeBetAllIn) {
...
@@ -151,7 +144,6 @@ TEST_F(PlayerTest, MakeBetAllIn) {
EXPECT_FALSE
(
player_
->
has_finished_turn
());
EXPECT_FALSE
(
player_
->
has_finished_turn
());
}
}
// todo look into if it's throwing an exception
// A bet with more money than the player has is illegal
// A bet with more money than the player has is illegal
TEST_F
(
PlayerTest
,
MakeBetMoneyOver
)
{
TEST_F
(
PlayerTest
,
MakeBetMoneyOver
)
{
player_name
=
player_
->
get_player_name
();
player_name
=
player_
->
get_player_name
();
...
@@ -163,7 +155,6 @@ TEST_F(PlayerTest, MakeBetMoneyOver) {
...
@@ -163,7 +155,6 @@ TEST_F(PlayerTest, MakeBetMoneyOver) {
EXPECT_FALSE
(
player_
->
has_finished_turn
());
EXPECT_FALSE
(
player_
->
has_finished_turn
());
}
}
// todo look into if it's throwing an exception
// A negative bet is illegal
// A negative bet is illegal
TEST_F
(
PlayerTest
,
MakeBetNegative
)
{
TEST_F
(
PlayerTest
,
MakeBetNegative
)
{
player_name
=
player_
->
get_player_name
();
player_name
=
player_
->
get_player_name
();
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment