diff options
Diffstat (limited to 'tests/indicator-fixture.h')
-rw-r--r-- | tests/indicator-fixture.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/indicator-fixture.h b/tests/indicator-fixture.h index 987c7b7..67cacf3 100644 --- a/tests/indicator-fixture.h +++ b/tests/indicator-fixture.h @@ -260,6 +260,16 @@ class IndicatorFixture : public ::testing::Test return expectActionStateIs(name, var); } + bool expectActionStateIs (const std::string& name, double value) { + GVariant * var = g_variant_new_double(value); + return expectActionStateIs(name, var); + } + + bool expectActionStateIs (const std::string& name, float value) { + GVariant * var = g_variant_new_double(value); + return expectActionStateIs(name, var); + } + private: std::shared_ptr<GVariant> getMenuAttributeVal (int location, std::shared_ptr<GMenuModel>& menu, const std::string& attribute, std::shared_ptr<GVariant>& value) { |