File: Main.cpp

package info (click to toggle)
signal-estimator 0.1.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,268 kB
  • sloc: cpp: 4,752; python: 846; sh: 147; makefile: 58
file content (9 lines) | stat: -rw-r--r-- 197 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
// Copyright (c) Signal Estimator authors
// Licensed under MIT

#include <gtest/gtest.h>

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