Skip to content

Commit df1a600

Browse files
committed
Further doco update
1 parent 075913f commit df1a600

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# TestStack.Dossier
22

3-
TestStack.Dossier provides you with the code infrastructure to easily and quickly generate test fixture data for your automated tests in a terse, readable and maintainable way using the Test Data Builder pattern.
3+
TestStack.Dossier provides you with the code infrastructure to easily and quickly generate test fixture data for your automated tests in a terse, readable and maintainable way using the Test Data Builder, anonymous value and equivalence class patterns.
44

55
For more information please see the [blog post](http://robdmoore.id.au/blog/2013/05/26/test-data-generation-the-right-way-object-mother-test-data-builders-nsubstitute-nbuilder/) that gives the theory behind the approach this library was intended for and the [presentation and example code](https://github.com/robdmoore/TestFixtureDataGenerationPresentation) that gives a concrete example of the usage of the library (and the theory behind it).
66

@@ -69,7 +69,7 @@ Prior to v2.0 this library was known as NTestDataBuilder.
6969
}
7070
7171
// Note: we typically only start with the methods that are strictly needed so the
72-
// builders are quick to write and aren't bloated'
72+
// builders are quick to write and aren't bloated
7373
public virtual CustomerBuilder WithLastName(string lastName)
7474
{
7575
return Set(x => x.LastName, lastName);
@@ -152,4 +152,6 @@ More comprehensive documentation is available on our [documentation website](htt
152152

153153
## Contributions / Questions
154154

155-
If you would like to contribute to this project then feel free to communicate with us via Twitter ([]@teststacknet](https://twitter.com/teststacknet)) or alternatively submit a [pull request](https://github.com/TestStack/TestStack.Dossier/compare/) / [issue](https://github.com/TestStack/TestStack.Dossier/issues/new).
155+
If you would like to contribute to this project then feel free to communicate with us via Twitter ([@teststacknet](https://twitter.com/teststacknet)) or alternatively submit a [pull request](https://github.com/TestStack/TestStack.Dossier/compare/) / [issue](https://github.com/TestStack/TestStack.Dossier/issues/new).
156+
157+
Feel free to check out our [up-for-grabs issues if you don't know where to start](https://github.com/TestStack/TestStack.Dossier/labels/up-for-grabs).

0 commit comments

Comments
 (0)