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
39 lines (33 loc) · 914 Bytes
/
PasswordTest.cpp
File metadata and controls
39 lines (33 loc) · 914 Bytes
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
/**
* 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, single_letter_password)
{
Password my_password;
ASSERT_EQ(1, my_password.count_leading_characters("Z"));
}
TEST(PasswordTest, mixed_case_password)
{
Password my_password;
ASSERT_EQ(true, my_password.has_mixed_case("ZZz"));
}
TEST(PasswordTest, empty_password)
{
Password my_password;
ASSERT_EQ(0, my_password.count_leading_characters(""));
}
TEST(PasswordTest, unique_characters_password)
{
Password my_password;
ASSERT_EQ(3, my_password.unique_characters("Aa1"));
}