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
a801dfd7
Commit
a801dfd7
authored
2 years ago
by
Flavia Taras
Browse files
Options
Downloads
Patches
Plain Diff
player tests compile now
parent
1d9b427e
No related branches found
Branches containing commit
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
+8
-8
8 additions, 8 deletions
unit-tests/player.cpp
with
8 additions
and
8 deletions
unit-tests/player.cpp
+
8
−
8
View file @
a801dfd7
...
...
@@ -43,10 +43,10 @@ protected:
int
bet_size
=
0
;
int
money
=
100
;
bool
finished_turn
=
false
;
hand
player_hand
;
hand
*
player_hand
;
std
::
string
err
;
};
/*
// If the player has finished their turn, the corresponding flag attribute has to be set
TEST_F
(
PlayerTest
,
SetFinishedTurn
)
{
player_
->
set_finished_turn
();
...
...
@@ -62,11 +62,11 @@ TEST_F(PlayerTest, IsBrokeFalse) {
// A player with no money should be broke
// TODO how to set the money of a player to 0 so that I can check this
TEST_F
(
PlayerTest
,
IsBrokeTrue
)
{
EXPECT_TRUE(player_hand
.
add_card(cards[1][0], err));
EXPECT_TRUE(player_hand
.
add_card(cards[3][0], err));
EXPECT_TRUE(player_hand
.
add_card(cards[13][0], err));
EXPECT_TRUE
(
player_hand
->
add_card
(
cards
[
1
][
0
],
err
));
EXPECT_TRUE
(
player_hand
->
add_card
(
cards
[
3
][
0
],
err
));
EXPECT_TRUE
(
player_hand
->
add_card
(
cards
[
13
][
0
],
err
));
std
::
vector
<
card
*>
expected_hand
=
{
cards
[
1
][
0
],
cards
[
3
][
0
],
cards
[
13
][
0
]};
EXPECT_EQ(expected_hand, player_hand
.
get_cards());
EXPECT_EQ
(
expected_hand
,
player_hand
->
get_cards
());
}
// TODO one of these for a broke player
...
...
@@ -74,7 +74,7 @@ TEST_F(PlayerTest, IsBrokeTrue) {
TEST_F
(
PlayerTest
,
SetupRound
)
{
player_name
=
player_
->
get_player_name
();
money
=
player_
->
get_money
();
player_hand
.
setup_round(err);
player_hand
->
setup_round
(
err
);
player_
->
setup_round
(
err
);
EXPECT_EQ
(
bet_size
,
player_
->
get_bet_size
());
EXPECT_EQ
(
money
,
player_
->
get_money
());
...
...
@@ -163,7 +163,7 @@ TEST_F(PlayerTest, MakeBetNegative) {
TEST_F(PlayerTest, WrapupRound) {
player_name = player_->get_player_name();
money = player_->get_money();
player_hand
.
setup_round(err);
player_hand
->
setup_round(err);
player_->setup_round(err);
EXPECT_EQ(bet_size, player_->get_bet_size());
EXPECT_EQ(money, player_->get_money());
...
...
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