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
Latest commit
22 lines (19 loc) · 567 Bytes
/
Copy pathPasswordTest.cpp
File metadata and controls
22 lines (19 loc) · 567 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/**
* Unit Tests for Password class
**/
#include<gtest/gtest.h>
#include"Password.h"
classPasswordTest : public ::testing::Test
{
protected:
PasswordTest(){} //constructor runs before each test
virtual~PasswordTest(){} //destructor cleans up after tests
virtualvoidSetUp(){} //sets up before each test (after constructor)
virtualvoidTearDown(){} //clean up after each test, (before destructor)
};
TEST(PasswordTest, single_letter_password)
{
Password my_password;
int actual = my_password.count_leading_characters("Z");
ASSERT_EQ(1, actual);
}