dotfiles/.emacs.d/snippets/c++-mode/test_main

10 lines
193 B
Plaintext
Raw Normal View History

2017-12-21 17:29:29 +01:00
# -*- mode: snippet -*-
# name: test_main
# key: test_main
# group: testing
# --
int main(int argc, char **argv)
{
::testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}