File: README.txt

package info (click to toggle)
libhamcrest-java 1.1-8
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 972 kB
  • ctags: 1,148
  • sloc: java: 4,869; xml: 349; makefile: 28; sh: 14
file content (94 lines) | stat: -rw-r--r-- 2,591 bytes parent folder | download | duplicates (6)
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94

                        ************
************************* Hamcrest *************************
                        ************

                    <http://hamcrest.org>

--[ What is Hamcrest? ]-------------------------------------

Hamcrest is a library of matchers, which can be combined in
to create flexible expressions of intent in tests.


--[ Binaries ]-----------------------------------------------

Depending on how you intend to use Hamcrest, you should use
different Jars.

 * [hamcrest-core.jar]
   This is the core API to be used by third-party framework
   providers. This includes the a foundation set of matcher
   implementations for common operations.
   This API is stable and will rarely change. You will need
   this library as a minimum.

 * [hamcrest-library.jar]
   The ever-growing library of Matcher implementations. This
   will grow between releases.

 * [hamcrest-generator.jar]
   A tool to allow many Matcher implementations to be
   combined into a single class so users don't have to
   remember many classes/packages to import. Generates
   code.

 * [hamcrest-integration.jar]
   Provides integration between Hamcrest and other testing
   tools, including JUnit (3 and 4), TestNG, jMock and
   EasyMock.

Alternatively, if you don't care:

 * [hamcrest-all.jar]
   Includes all of the above.

For convenience, all the Jars also include source code.


--[ Dependencies ]-------------------------------------------

All libraries in the 'lib' directory are used at build time,
or are optional extras used for tighter integration with
third party libraries.

ALL OF THE DEPENDENCIES ARE OPTIONAL.


--[ Documentation ]------------------------------------------

Documentation can be found at:
  http://hamcrest.org/


--[ Source ]-------------------------------------------------

The complete source for Hamcrest is bundled. This includes:
 * Matcher core classes [src/core]
 * Matcher libary [src/library]
 * Matcher integrations [src/integration]
 * Syntactic sugar generator [src/generator]
 * Unit tests [src/unit-test]
 * Ant build file [build.xml]
 * Dependencies [lib]

To build, please read BUILDING.txt

-------------------------------------------------------------

Developers:
- Joe Walnes
- Nat Pryce
- Steve Freeman

Contributors:
- Robert Chatley
- Tom White
- Neil Dunn
- Dan North
- Magne Rasmussen
- David Saff

Also, thanks to everyone who has worked on DynaMock, nMock,
jMock, EasyMock and MiniMock! These libraries inspired
Hamcrest.