diff options
author | Ted Gould <ted@gould.cx> | 2013-11-15 16:34:20 -0600 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2013-11-15 16:34:20 -0600 |
commit | 868453ef75110badecdb54e13b79a74cfc95282a (patch) | |
tree | c08341f31717dc254f1b8af4c70e798a56ee86b1 /tests/name-watch-test.cc | |
parent | 5214427d1bf98bcd3f48ecfe31bdd7abda05f7eb (diff) | |
download | ayatana-indicator-sound-868453ef75110badecdb54e13b79a74cfc95282a.tar.gz ayatana-indicator-sound-868453ef75110badecdb54e13b79a74cfc95282a.tar.bz2 ayatana-indicator-sound-868453ef75110badecdb54e13b79a74cfc95282a.zip |
Woot, a test, kinda
Diffstat (limited to 'tests/name-watch-test.cc')
-rw-r--r-- | tests/name-watch-test.cc | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/tests/name-watch-test.cc b/tests/name-watch-test.cc new file mode 100644 index 0000000..b5a1db3 --- /dev/null +++ b/tests/name-watch-test.cc @@ -0,0 +1,21 @@ + +#include <gio/gio.h> +#include <gtest/gtest.h> + +class NameWatchTest : public ::testing::Test +{ + protected: + virtual void SetUp() { + + } + + virtual void TearDown() { + + } +}; + +TEST_F(NameWatchTest, DummyTest) +{ + + +} |