Tweaked documentation

git-svn-id: https://svn.code.sf.net/p/turtle/code/trunk@769 860be788-9bd5-4423-9f1e-828f051e677b
This commit is contained in:
mat007 2015-03-01 11:28:41 +00:00
parent 96f5d1959a
commit 88451b7c02
2 changed files with 3 additions and 3 deletions

View file

@ -42,6 +42,8 @@ Synopsis :
MOCK_CLASS( name ) // defines a class
MOCK_BASE_CLASS( name, base ) // defines a class deriving from a base class
The preferred form for defining a mock class is with using MOCK_CLASS and MOCK_BASE_CLASS, however using a regular struct or class is also perfectly fine.
Example :
[class_example_1]
@ -58,8 +60,6 @@ Example :
[class_example_4]
The preferred form for defining a mock class is with using MOCK_CLASS and MOCK_BASE_CLASS, however equivalent alternatives exist without the macros.
Example :
[class_example_5]