File: dtl_test.cpp

package info (click to toggle)
dtl 1.21-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 440 kB
  • sloc: cpp: 2,285; makefile: 2
file content (10 lines) | stat: -rw-r--r-- 196 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
/**
 * It is necessary to use googletest to run tests.
 */

#include <gtest/gtest.h>

int main (int argc, char *argv[]) {
    ::testing::InitGoogleTest(&argc, argv);
    return RUN_ALL_TESTS();
}