Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ISC Open Source Projects
Kea
Commits
31b153df
Commit
31b153df
authored
May 24, 2012
by
Mukund Sivaraman
Browse files
[1704] Replace TEST_F with TEST
parent
10b434be
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/lib/util/tests/interprocess_sync_file_unittest.cc
View file @
31b153df
...
...
@@ -20,12 +20,7 @@ using namespace std;
namespace
isc
{
namespace
util
{
class
InterprocessSyncFileTest
:
public
::
testing
::
Test
{
protected:
InterprocessSyncFileTest
()
{}
};
TEST_F
(
InterprocessSyncFileTest
,
TestLock
)
{
TEST
(
InterprocessSyncFileTest
,
TestLock
)
{
InterprocessSyncFile
sync
(
"test"
);
InterprocessSyncLocker
locker
(
sync
);
...
...
@@ -72,7 +67,7 @@ TEST_F(InterprocessSyncFileTest, TestLock) {
EXPECT_TRUE
(
locker
.
unlock
());
}
TEST
_F
(
InterprocessSyncFileTest
,
TestMultipleFilesDirect
)
{
TEST
(
InterprocessSyncFileTest
,
TestMultipleFilesDirect
)
{
InterprocessSyncFile
sync
(
"test1"
);
InterprocessSyncLocker
locker
(
sync
);
...
...
@@ -86,7 +81,7 @@ TEST_F(InterprocessSyncFileTest, TestMultipleFilesDirect) {
EXPECT_TRUE
(
locker
.
unlock
());
}
TEST
_F
(
InterprocessSyncFileTest
,
TestMultipleFilesForked
)
{
TEST
(
InterprocessSyncFileTest
,
TestMultipleFilesForked
)
{
InterprocessSyncFile
sync
(
"test"
);
InterprocessSyncLocker
locker
(
sync
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment