~mc-return/compiz/compiz.merge-src-header-files-cleanup

« back to all changes in this revision

Viewing changes to src/pluginclasshandler/tests/test-pluginclasshandler.h

  • Committer: MC Return
  • Date: 2013-06-20 05:56:13 UTC
  • mfrom: (3724.2.16 0.9.10)
  • Revision ID: mc.return@gmx.net-20130620055613-8dp00nmw2jpm3ptu
Merged latest lp:compiz and fixed conflicts

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
#include <core/pluginclasses.h>
3
3
 
4
4
#include <gtest/gtest.h>
 
5
#include <gmock/gmock.h>
5
6
 
6
7
#include <list>
7
8
 
44
45
        Base *b;
45
46
};
46
47
 
 
48
namespace compiz
 
49
{
 
50
namespace plugin
 
51
{
 
52
namespace internal
 
53
{
 
54
/* The version available in the tests is
 
55
 * readily constructed */
 
56
class PluginKey
 
57
{
 
58
};
 
59
}
 
60
}
 
61
}
 
62
 
47
63
class CompizPCHTest : public ::testing::Test
48
64
{
49
65
public:
54
70
     Global *global;
55
71
     std::list <Base *> bases;
56
72
     std::list <Plugin *> plugins;
 
73
 
 
74
     compiz::plugin::internal::PluginKey key;
57
75
};