Skip to content

Commit

Permalink
Fix PasswordTest's class name
Browse files Browse the repository at this point in the history
  • Loading branch information
kbuffardi committed Nov 6, 2024
1 parent 84099a2 commit 141c65a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions PasswordTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
#include <gtest/gtest.h>
#include "Password.h"

class PracticeTest : public ::testing::Test
class PasswordTest : public ::testing::Test
{
protected:
PracticeTest(){} //constructor runs before each test
virtual ~PracticeTest(){} //destructor cleans up after tests
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)
};
Expand Down

0 comments on commit 141c65a

Please sign in to comment.