-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathREADME
More file actions
53 lines (30 loc) · 1.5 KB
/
Copy pathREADME
File metadata and controls
53 lines (30 loc) · 1.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
TestDataCaptureJ
A Java development tool for capturing test data when a Java application is run, to use in unit testing.
Description:
------------
When running a Java (web) application, uses AOP to log the contents of parameters or return values of
methods in the running application that you want to test. The contents of these objects are logged in
a format that can be used to create mock objects that can be used in unit testing (i.e. with JUnit, TestNG, etc).
For further documentation, go to http://davidwong.github.io/TestDataCaptureJ/
Copyright and Licensing:
------------------------
Copyright (c) 2009,2011,2013 David Wong
This program is fully open source and free of charge for usage.
Licensed under the AGPL agreement, see the LICENCE file.
Contact:
--------
David Wong
developer@davidwong.com.au
Change Log:
-----------
* Version 0.9
This is the initial working release version.
* Version 1.0
This version is an update to use the lastest version of Java and tools. Also some refactoring and tidying up of the code in preparation for an internal re-write to make it more flexible.
- update to latest version of development tools and libraries (except where dependencies required old version):
* Java 1.7
* Eclipse Java IDE Juno 4.2
* AJDT 2.2.1 (includes AspectJ 1.7.2)
* 3rd party dependency jars in the lib directory
- refactor the classes that generate the text output in Java syntax (more meaningful file and package names, classes now created from a factory).
- fix broken unit tests