File: testrunner.cpp

package info (click to toggle)
ffmpegthumbnailer 2.0.8-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 1,744 kB
  • ctags: 374
  • sloc: sh: 11,133; cpp: 2,361; makefile: 69
file content (10 lines) | stat: -rw-r--r-- 219 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
#include <iostream>

#include <gtest/gtest.h>

int main(int argc, char **argv) {
    std::cout << "Running ffmpegthumbnailer tests" << std::endl;

    testing::InitGoogleTest(&argc, argv);
    return RUN_ALL_TESTS();
}