fish/fish_shell_tests/main.cpp

11 lines
181 B
C++
Raw Normal View History

2017-05-15 22:08:07 +00:00
//
// Created by Antoine Bartuccio on 15/05/2017.
//
2017-05-15 23:33:36 +00:00
#include "gtest/gtest.h"
2017-05-15 22:08:07 +00:00
int main(int argc, char **argv){
::testing::InitGoogleTest(&argc, argv);
2017-05-15 23:33:36 +00:00
return RUN_ALL_TESTS();
2017-05-15 22:08:07 +00:00
}