forked from ChicoState/UnitTestPractice
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPasswordTest.cpp
More file actions
64 lines (55 loc) · 2.17 KB
/
PasswordTest.cpp
File metadata and controls
64 lines (55 loc) · 2.17 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
/**
* Unit Tests for Password class
**/
#include <gtest/gtest.h>
#include "Password.h"
class PasswordTest : public ::testing::Test
{
protected:
PasswordTest(){} //constructor runs before each test
virtual ~PasswordTest(){} //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(PasswordTest, has_mixed_cases)
{
Password my_password;
int actual = my_password.count_leading_characters("Z");
ASSERT_EQ(1, my_password.count_leading_characters("Z")); //// This makes sure the value that is given is what is expected.
}
TEST(PasswordTest1, single_letter_password)
{
Password my_password;
int actual = my_password.count_leading_characters("ZzZ");
ASSERT_EQ(2, my_password.count_leading_characters("ZzZ")); //// This makes sure the value that is given is what is expected.
}
TEST(PasswordTest2, single_letter_password)
{
Password my_password;
int actual = my_password.count_leading_characters(" ");
ASSERT_EQ(3, my_password.count_leading_characters(" ")); //// This makes sure the value that is given is what is expected.
}
TEST(PasswordTest3, single_letter_password)
{
Password my_password;
int actual = my_password.count_leading_characters("""I");
ASSERT_EQ(2, my_password.count_leading_characters("""I")); //// This makes sure the value that is given is what is expected.
}
TEST(PasswordTest4, single_letter_password)
{
Password my_password;
int actual = my_password.count_leading_characters("Aab");
ASSERT_EQ(1, my_password.count_leading_characters("Aab")); //// This makes sure the value that is given is what is expected.
}
TEST(PasswordTest5, single_letter_password)
{
Password my_password;
int actual = my_password.count_leading_characters("AAa");
ASSERT_EQ(2, my_password.count_leading_characters("AAa")); //// This makes sure the value that is given is what is expected.
}
TEST(PasswordTest6, single_letter_password)
{
Password my_password;
int actual = my_password.count_leading_characters("AA ");
ASSERT_EQ(2, my_password.count_leading_characters("AA ")); //// This makes sure the value that is given is what is expected.
};