diff options
author | Ted Gould <ted@gould.cx> | 2012-03-21 15:29:38 -0500 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2012-03-21 15:29:38 -0500 |
commit | cbcbe4105058016139d3c566ee6177281305abc8 (patch) | |
tree | 85c195505b19765209cb81ff9d8634a18caca5d7 /test/test-gtest.cpp | |
parent | b4a2449ace91863bc187500e1a4eb3048c350711 (diff) | |
parent | 7db5c14740ce0deae6ed4279cde70b731c56390a (diff) | |
download | ayatana-indicator-messages-cbcbe4105058016139d3c566ee6177281305abc8.tar.gz ayatana-indicator-messages-cbcbe4105058016139d3c566ee6177281305abc8.tar.bz2 ayatana-indicator-messages-cbcbe4105058016139d3c566ee6177281305abc8.zip |
* New upstream release.
* Fix for missing icons in the messaging menu (LP: #960553)
* Fix i18n for description (LP: #957525)
* Implementing initial testing
* Fixing blacklists (LP: #939258)
Diffstat (limited to 'test/test-gtest.cpp')
-rw-r--r-- | test/test-gtest.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/test/test-gtest.cpp b/test/test-gtest.cpp new file mode 100644 index 0000000..1cc97be --- /dev/null +++ b/test/test-gtest.cpp @@ -0,0 +1,12 @@ + +#include <glib.h> +#include <gtest/gtest.h> + +extern "C" { + #include "launcher-menu-item.h" +} + +TEST(LauncherMenuItem, NameInitialized) { + g_type_init(); + EXPECT_TRUE(true); +} |