~mc-return/compiz/compiz.merge-plugin-startup

« back to all changes in this revision

Viewing changes to compizconfig/gsettings/tests/test_gsettings.cpp

  • Committer: Tarmac
  • Author(s): smspillaz, Sam Spilsbury, Daniel van Vugt
  • Date: 2012-07-11 08:00:58 UTC
  • mfrom: (3262.3.80 gsettings)
  • Revision ID: tarmac-20120711080058-i4iax4g092e84s30
Add gsettings test cases and schema/path cleanups.. Fixes: . Approved by Daniel van Vugt.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#include "test_gsettings_tests.h"
 
2
 
 
3
using ::testing::Values;
 
4
 
 
5
class CCSGSettingsTestWithMocks :
 
6
    public CCSGSettingsTeardownSetupInterface
 
7
{
 
8
    public:
 
9
 
 
10
        void SetUp () {}
 
11
        void TearDown () {}
 
12
};
 
13
 
 
14
class CCSGSettingsTestWithSystem :
 
15
    public CCSGSettingsTeardownSetupInterface
 
16
{
 
17
    public:
 
18
 
 
19
        void SetUp () {}
 
20
        void TearDown () {}
 
21
};
 
22
 
 
23
namespace
 
24
{
 
25
    CCSGSettingsTestWithMocks withMocks;
 
26
    CCSGSettingsTestWithSystem withSystem;
 
27
}
 
28
 
 
29
INSTANTIATE_TEST_CASE_P(CompizConfigGSettingsTestWithMocks, CCSGSettingsTest, Values (&withMocks, &withSystem));