summaryrefslogtreecommitdiff
path: root/development/mockpp/README
diff options
context:
space:
mode:
authorManuel Argüelles <manuel.arguelles@gmail.com>2017-07-23 11:24:37 +0100
committerDavid Spencer <idlemoor@slackbuilds.org>2017-07-23 15:09:26 +0100
commit989c6465cf9c1c4b4da0d2b4818c324a0003929d (patch)
tree7bb100f88fb213ea48a7c80b113f2e63818caf5a /development/mockpp/README
parentc83e6c8f096a2664f111f376498a596bf0588aac (diff)
downloadslackbuilds-989c6465cf9c1c4b4da0d2b4818c324a0003929d.tar.gz
development/mockpp: Added (Unit testing framework for C++).
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
Diffstat (limited to 'development/mockpp/README')
-rw-r--r--development/mockpp/README8
1 files changed, 8 insertions, 0 deletions
diff --git a/development/mockpp/README b/development/mockpp/README
new file mode 100644
index 0000000000..427f455d33
--- /dev/null
+++ b/development/mockpp/README
@@ -0,0 +1,8 @@
+Mockpp is a platform independent generic unit testing framework for
+C++. It's goal is to facilitate developing unit tests in the spirit of
+Mock Objects for Java, EasyMock and jMock.
+
+Mock objects allow you to set up predictible behaviour to help you
+test your production code by emulating some functionality your code
+depends on. This might for example be a huge database which is too
+difficult and time consuming to maintain just for testing purposes.