fish/fish_shell_tests/main.cpp

16 lines
379 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-16 00:58:16 +00:00
#include "../fish_shell/fish_core.c"
#include "../fish_shell/fish_utils.c"
#include "../fish_shell/fish_commands.c"
#include "../fish_shell/fish_globbing.c"
2017-05-29 14:19:42 +00:00
#include "../fish_shell/fish_settings.c"
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
}