README 1.3 KB

12345678910111213141516171819202122232425262728293031323334
  1. The Google Mock class generator is an application that is part of cppclean.
  2. For more information about cppclean, visit http://code.google.com/p/cppclean/
  3. The mock generator requires Python 2.3.5 or later. If you don't have Python
  4. installed on your system, you will also need to install it. You can download
  5. Python from: http://www.python.org/download/releases/
  6. To use the Google Mock class generator, you need to call it
  7. on the command line passing the header file and class for which you want
  8. to generate a Google Mock class.
  9. Make sure to install the scripts somewhere in your path. Then you can
  10. run the program.
  11. gmock_gen.py header-file.h [ClassName]...
  12. If no ClassNames are specified, all classes in the file are emitted.
  13. To change the indentation from the default of 2, set INDENT in
  14. the environment. For example to use an indent of 4 spaces:
  15. INDENT=4 gmock_gen.py header-file.h ClassName
  16. This version was made from SVN revision 281 in the cppclean repository.
  17. Known Limitations
  18. -----------------
  19. Not all code will be generated properly. For example, when mocking templated
  20. classes, the template information is lost. You will need to add the template
  21. information manually.
  22. Not all permutations of using multiple pointers/references will be rendered
  23. properly. These will also have to be fixed manually.