File tree 2 files changed +18
-8
lines changed
2 files changed +18
-8
lines changed Original file line number Diff line number Diff line change @@ -63,6 +63,7 @@ check_PROGRAMS = \
63
63
linlsq_test \
64
64
loadlang_test \
65
65
matrix_test \
66
+ nthitem_test \
66
67
osd_test \
67
68
progress_test \
68
69
tesseracttests
@@ -108,6 +109,9 @@ loadlang_test_LDADD = $(GTEST_LIBS) $(TESS_LIBS) $(LEPTONICA_LIBS)
108
109
matrix_test_SOURCES = matrix_test.cc
109
110
matrix_test_LDADD = $(GTEST_LIBS ) $(TESS_LIBS )
110
111
112
+ nthitem_test_SOURCES = nthitem_test.cc
113
+ nthitem_test_LDADD = $(GTEST_LIBS ) $(TESS_LIBS )
114
+
111
115
osd_test_SOURCES = osd_test.cc
112
116
osd_test_LDADD = $(GTEST_LIBS ) $(TESS_LIBS ) $(LEPTONICA_LIBS )
113
117
Original file line number Diff line number Diff line change
1
+ // (C) Copyright 2017, Google Inc.
2
+ // Licensed under the Apache License, Version 2.0 (the "License");
3
+ // you may not use this file except in compliance with the License.
4
+ // You may obtain a copy of the License at
5
+ // http://www.apache.org/licenses/LICENSE-2.0
6
+ // Unless required by applicable law or agreed to in writing, software
7
+ // distributed under the License is distributed on an "AS IS" BASIS,
8
+ // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
9
+ // See the License for the specific language governing permissions and
10
+ // limitations under the License.
1
11
2
- #include " tesseract/ccutil/genericvector.h"
3
- #include " tesseract/ccutil/kdpair.h"
12
+ #include " genericvector.h"
13
+ #include " kdpair.h"
14
+
15
+ #include " include_gunit.h"
4
16
5
17
namespace tesseract {
6
18
@@ -96,9 +108,3 @@ TEST_F(NthItemTest, EqualTest) {
96
108
}
97
109
98
110
} // namespace tesseract
99
-
100
-
101
-
102
-
103
-
104
-
You can’t perform that action at this time.
0 commit comments