forked from BOINC/boinc
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a66001d
commit c35ce74
Showing
2 changed files
with
62 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
// This file is part of BOINC. | ||
// http://boinc.berkeley.edu | ||
// Copyright (C) 2020 University of California | ||
// | ||
// BOINC is free software; you can redistribute it and/or modify it | ||
// under the terms of the GNU Lesser General Public License | ||
// as published by the Free Software Foundation, | ||
// either version 3 of the License, or (at your option) any later version. | ||
// | ||
// BOINC is distributed in the hope that it will be useful, | ||
// but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. | ||
// See the GNU Lesser General Public License for more details. | ||
// | ||
// You should have received a copy of the GNU Lesser General Public License | ||
// along with BOINC. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
#include "gtest/gtest.h" | ||
#include "util.h" | ||
|
||
using namespace std; | ||
|
||
namespace test_util { | ||
|
||
// The fixture for testing class Foo. | ||
|
||
class test_util : public ::testing::Test { | ||
protected: | ||
// You can remove any or all of the following functions if its body | ||
// is empty. | ||
|
||
test_util() { | ||
// You can do set-up work for each test here. | ||
} | ||
|
||
virtual ~test_util() { | ||
// You can do clean-up work that doesn't throw exceptions here. | ||
} | ||
|
||
// If the constructor and destructor are not enough for setting up | ||
// and cleaning up each test, you can define the following methods: | ||
|
||
virtual void SetUp() { | ||
// Code here will be called immediately after the constructor (right | ||
// before each test). | ||
} | ||
|
||
virtual void TearDown() { | ||
// Code here will be called immediately after each test (right | ||
// before the destructor). | ||
} | ||
|
||
// Objects declared here can be used by all tests in the test case for Foo. | ||
}; | ||
|
||
TEST_F(test_util, dtime) { | ||
EXPECT_TRUE(dtime() >= 0); | ||
} | ||
|
||
|
||
} // namespace |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters