File: main.cpp

package info (click to toggle)
libsavitar 5.0.0-4.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 820 kB
  • sloc: cpp: 11,325; xml: 179; python: 30; sh: 17; makefile: 7
file content (14 lines) | stat: -rw-r--r-- 274 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//Copyright (c) 2019 Ultimaker B.V.
//libSavitar is released under the terms of the AGPLv3 or higher.

#include <gtest/gtest.h>

/*!
 * \brief Runs the test cases.
 */
int main(int argc,char** argv)
{
    testing::InitGoogleTest(&argc, argv);
    return RUN_ALL_TESTS();
}