Add unittest for static TessBaseAPI object (#3509)

Signed-off-by: Stefan Weil <sw@weilnetz.de>
This commit is contained in:
Stefan Weil 2021-07-25 13:34:43 +02:00 committed by GitHub
parent df1295ea6b
commit c9f42ce62b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -64,6 +64,12 @@ protected:
} }
}; };
// Test static TessBaseAPI (like it is used by tesserocr).
TEST_F(TesseractTest, StaticTessBaseAPI) {
static tesseract::TessBaseAPI api;
api.End();
}
// Tests that Tesseract gets exactly the right answer on phototest. // Tests that Tesseract gets exactly the right answer on phototest.
TEST_F(TesseractTest, BasicTesseractTest) { TEST_F(TesseractTest, BasicTesseractTest) {
tesseract::TessBaseAPI api; tesseract::TessBaseAPI api;