mirror of
https://gitlab.com/klmp200/fish.git
synced 2025-07-14 13:49:24 +00:00
17 lines
234 B
C++
17 lines
234 B
C++
//
|
|
// Created by Antoine Bartuccio on 15/05/2017.
|
|
//
|
|
|
|
|
|
|
|
#include <gtest/gtest.h>
|
|
|
|
int main(int argc, char **argv){
|
|
|
|
printf("Je mange des patates");
|
|
::testing::InitGoogleTest(&argc, argv);
|
|
int ret = RUN_ALL_TESTS();
|
|
|
|
return ret;
|
|
}
|