mirror of
https://github.com/tesseract-ocr/tesseract.git
synced 2024-11-27 20:59:36 +08:00
unittest: Replace NULL by nullptr
Signed-off-by: Stefan Weil <sw@weilnetz.de>
This commit is contained in:
parent
5eca9143b9
commit
39cfbd04fe
@ -32,10 +32,10 @@ namespace {
|
||||
class QuickTest : public testing::Test {
|
||||
protected:
|
||||
virtual void SetUp() {
|
||||
start_time_ = time(NULL);
|
||||
start_time_ = time(nullptr);
|
||||
}
|
||||
virtual void TearDown() {
|
||||
const time_t end_time = time(NULL);
|
||||
const time_t end_time = time(nullptr);
|
||||
EXPECT_TRUE(end_time - start_time_ <=25) << "The test took too long - " << ::testing::PrintToString(end_time - start_time_);
|
||||
}
|
||||
time_t start_time_;
|
||||
|
@ -135,7 +135,7 @@ class UnicharcompressTest : public ::testing::Test {
|
||||
RecodedCharID extended = code;
|
||||
int length = code.length();
|
||||
const GenericVector<int>* final_codes = compressed_.GetFinalCodes(code);
|
||||
if (final_codes != NULL) {
|
||||
if (final_codes != nullptr) {
|
||||
for (int i = 0; i < final_codes->size(); ++i) {
|
||||
int ending = (*final_codes)[i];
|
||||
EXPECT_GT(times_seen[ending](length), 0);
|
||||
@ -145,7 +145,7 @@ class UnicharcompressTest : public ::testing::Test {
|
||||
}
|
||||
}
|
||||
const GenericVector<int>* next_codes = compressed_.GetNextCodes(code);
|
||||
if (next_codes != NULL) {
|
||||
if (next_codes != nullptr) {
|
||||
for (int i = 0; i < next_codes->size(); ++i) {
|
||||
int extension = (*next_codes)[i];
|
||||
EXPECT_GT(times_seen[extension](length), 0);
|
||||
|
Loading…
Reference in New Issue
Block a user