forked from ChicoState/cpp-gtest
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrandoTest.cpp
More file actions
107 lines (88 loc) · 2.06 KB
/
randoTest.cpp
File metadata and controls
107 lines (88 loc) · 2.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
/**
* Unit Tests for Rando Test
**/
#include <gtest/gtest.h>
#include "rando.h"
/*
FUNCTIONS WE NEED TO TEST:
bool shouldWorry(bool,bool,bool);
bool isDivisbleBy(int,int);
bool isPrime(int);
int nearestToZero(int,int);
*/
class RandoTest : public ::testing::Test
{
protected:
RandoTest(){} //constructor runs before each test
virtual ~RandoTest(){} //destructor cleans up after tests
virtual void SetUp(){} //sets up before each test (after constructor)
virtual void TearDown(){} //clean up after each test, (before destructor)
};
TEST(RandoTest, allChildrenSmile)
{
Rando rando;
ASSERT_TRUE( rando.shouldWorry(true,true,true) );
}
TEST(RandoTest, aChildSmiles)
{
Rando rando;
ASSERT_TRUE( rando.shouldWorry(true,false,false) );
}
TEST(RandoTest, bChildSmiles)
{
Rando rando;
ASSERT_TRUE( rando.shouldWorry(false,true,false) );
}
TEST(RandoTest, cChildSmiles)
{
Rando rando;
ASSERT_TRUE( rando.shouldWorry(false,false,true) );
}
TEST(RandoTest, noChildSmiles)
{
Rando rando;
ASSERT_FALSE( rando.shouldWorry(false,false,false) );
}
TEST(RandoTest, isDivisbleNums)
{
Rando rando;
ASSERT_TRUE( rando.isDivisbleBy(10,5) );
ASSERT_TRUE( rando.isDivisbleBy(420,42) );
ASSERT_TRUE( rando.isDivisbleBy(555,111) );
}
TEST(RandoTest, isNotDivisbleNums)
{
Rando rando;
ASSERT_FALSE( rando.isDivisbleBy(10,4) );
ASSERT_FALSE( rando.isDivisbleBy(420,419) );
ASSERT_FALSE( rando.isDivisbleBy(555,112) );
}
TEST(RandoTest, isPrimeNums)
{
Rando rando;
ASSERT_TRUE( rando.isPrime(7) );
ASSERT_TRUE( rando.isPrime(11) );
ASSERT_TRUE( rando.isPrime(13) );
ASSERT_TRUE( rando.isPrime(17) );
ASSERT_TRUE( rando.isPrime(419) );
ASSERT_TRUE( rando.isPrime(421) );
}
TEST(RandoTest, isNotPrimeNums)
{
Rando rando;
ASSERT_FALSE( rando.isPrime(4));
ASSERT_FALSE( rando.isPrime(6));
ASSERT_FALSE( rando.isPrime(8));
ASSERT_FALSE( rando.isPrime(80));
ASSERT_FALSE( rando.isPrime(420));
}
TEST(RandoTest, ClosestToZeroA)
{
Rando rando;
ASSERT_EQ( rando.nearestToZero(-1,5), -1);
}
TEST(RandoTest, ClosestToZeroB)
{
Rando rando;
ASSERT_EQ( rando.nearestToZero(5,1), 1);
}