README revision 13481
14202Sbinkertn@umich.edu
24202Sbinkertn@umich.eduThe Google Mock class generator is an application that is part of cppclean.
34202Sbinkertn@umich.eduFor more information about cppclean, see the README.cppclean file or
44202Sbinkertn@umich.eduvisit http://code.google.com/p/cppclean/
54202Sbinkertn@umich.edu
64202Sbinkertn@umich.educppclean requires Python 2.3.5 or later.  If you don't have Python installed
74202Sbinkertn@umich.eduon your system, you will also need to install it.  You can download Python
84202Sbinkertn@umich.edufrom:  http://www.python.org/download/releases/
94202Sbinkertn@umich.edu
104202Sbinkertn@umich.eduTo use the Google Mock class generator, you need to call it
114202Sbinkertn@umich.eduon the command line passing the header file and class for which you want
124202Sbinkertn@umich.eduto generate a Google Mock class.
134202Sbinkertn@umich.edu
144202Sbinkertn@umich.eduMake sure to install the scripts somewhere in your path.  Then you can
154202Sbinkertn@umich.edurun the program.
164202Sbinkertn@umich.edu
174202Sbinkertn@umich.edu  gmock_gen.py header-file.h [ClassName]...
184202Sbinkertn@umich.edu
194202Sbinkertn@umich.eduIf no ClassNames are specified, all classes in the file are emitted.
204202Sbinkertn@umich.edu
214202Sbinkertn@umich.eduTo change the indentation from the default of 2, set INDENT in
224202Sbinkertn@umich.eduthe environment.  For example to use an indent of 4 spaces:
234202Sbinkertn@umich.edu
244202Sbinkertn@umich.eduINDENT=4 gmock_gen.py header-file.h ClassName
254202Sbinkertn@umich.edu
264202Sbinkertn@umich.eduThis version was made from SVN revision 281 in the cppclean repository.
274202Sbinkertn@umich.edu
284202Sbinkertn@umich.eduKnown Limitations
294202Sbinkertn@umich.edu-----------------
304202Sbinkertn@umich.eduNot all code will be generated properly.  For example, when mocking templated
314202Sbinkertn@umich.educlasses, the template information is lost.  You will need to add the template
324202Sbinkertn@umich.eduinformation manually.
338831Smrinmoy.ghosh@arm.com
347768SAli.Saidi@ARM.comNot all permutations of using multiple pointers/references will be rendered
3513554Sjavier.bueno@metempsy.comproperly.  These will also have to be fixed manually.
365337Sstever@gmail.com