Skip to content

Commit

Permalink
Fix up Javadocs to enable Release 2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nsoft committed Sep 24, 2016
1 parent 3f76fd7 commit 7e61f07
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
5 changes: 2 additions & 3 deletions src/main/java/com/copyright/easiertest/BeanTester.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@

/**
* Automates testing of simple Java Bean properties.
* <p/>
* <p>This class is meant to provide Get/Set testing for simple properties on Beans that conform
* to the BeanSpecification suggested naming standards (i.e. getFoo/setFoo and isBar/setBar).
* Indexed properties (i.e. getBaz(3) and setBaz(3, bazObj) ) are not supported. A property is
Expand All @@ -39,9 +38,9 @@
* corresponds to the name of the field in the class. This restriction is necessary so that
* cases where two properties are backed by the same field, or the getter and setter don't
* use the same field are detected as failures.
* <p/>
*
* <p>This class only supports JUnit for the time being</p>
* <p/>
*
* <p>Enum types and types shown in the {@link #exampleTypes} map are supported.
*
* @author gheck
Expand Down
1 change: 0 additions & 1 deletion src/main/java/com/copyright/easiertest/EasierMocks.java
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@

/**
* Automates creation and checking of mock objects. Normal usage is as follows:
* <p/>
* <ol>
* <li>Annotate one or more fields with {@link Mock}
* <li>Call {@link #prepareMocks(Object)} in the constructor of the test class, and pass 'this' as
Expand Down

0 comments on commit 7e61f07

Please sign in to comment.