summaryrefslogtreecommitdiff
path: root/qadevOOo/runner/lib
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2012-08-21 09:27:24 +0200
committerStephan Bergmann <sbergman@redhat.com>2012-08-28 16:15:44 +0200
commit96fb2453e40f97a0bffcfe7e046b4599beace152 (patch)
tree7b285005e900f3223009bb0368762ec6835d1c54 /qadevOOo/runner/lib
parent9dc3b1bf6120e958e1a943a9c3c8432302bd25e3 (diff)
Javadoc warnings - fix some tags and references
Change-Id: I13be16beac258c551e58654b4fc37877d7bb9695
Diffstat (limited to 'qadevOOo/runner/lib')
-rw-r--r--qadevOOo/runner/lib/MultiPropertyTest.java4
-rw-r--r--qadevOOo/runner/lib/TestCase.java6
-rw-r--r--qadevOOo/runner/lib/TestResult.java2
3 files changed, 6 insertions, 6 deletions
diff --git a/qadevOOo/runner/lib/MultiPropertyTest.java b/qadevOOo/runner/lib/MultiPropertyTest.java
index 5d6132341b69..c52a9d84f71c 100644
--- a/qadevOOo/runner/lib/MultiPropertyTest.java
+++ b/qadevOOo/runner/lib/MultiPropertyTest.java
@@ -100,7 +100,7 @@ public class MultiPropertyTest extends MultiMethodTest
* calls testProperty method for the method. Otherwise calls
* super.invokeTestMethod().
*
- * @see #MultiMethodTest.invokeTestMethod()
+ * @see MultiMethodTest#invokeTestMethod
*/
protected void invokeTestMethod(Method meth, String methName)
{
@@ -554,7 +554,7 @@ public class MultiPropertyTest extends MultiMethodTest
* Tests the property using <code>PropertyValueSwitcher</code>
* tester and two values for this property.
*
- * @see #PropertyValueSwitcher
+ * @see PropertyValueSwitcher
*/
protected void testProperty(String propName, Object val1, Object val2)
{
diff --git a/qadevOOo/runner/lib/TestCase.java b/qadevOOo/runner/lib/TestCase.java
index eae36ba9c086..0477ebef7c8c 100644
--- a/qadevOOo/runner/lib/TestCase.java
+++ b/qadevOOo/runner/lib/TestCase.java
@@ -78,7 +78,7 @@ public abstract class TestCase {
* @param tParam test parameters
* @param log writer to log information while testing
*
- * @see #initializeTestCase()
+ * @see #initializeTestCase
*/
protected void initialize( TestParameters tParam, PrintWriter log ) {
}
@@ -114,7 +114,7 @@ public abstract class TestCase {
*
* @return the created <code>TestEnvironment</code>
*
- * @see #createTestEnvironment()
+ * @see #createTestEnvironment
* @see lib.TestEnvironment
*/
public synchronized TestEnvironment getTestEnvironment( TestParameters tParam ) {
@@ -157,7 +157,7 @@ public abstract class TestCase {
* @param log writer to log information while testing
*
* @see TestEnvironment
- * @see #getTestEnvironment()
+ * @see #getTestEnvironment
*/
protected abstract TestEnvironment createTestEnvironment(
TestParameters tParam, PrintWriter log );
diff --git a/qadevOOo/runner/lib/TestResult.java b/qadevOOo/runner/lib/TestResult.java
index 1df57a950d53..4d89fc71b90b 100644
--- a/qadevOOo/runner/lib/TestResult.java
+++ b/qadevOOo/runner/lib/TestResult.java
@@ -54,7 +54,7 @@ public class TestResult {
* The method makes the method tested with the status, i.e. it adds the
* status to its state and makes it completed.
*
- * @param method reffers to the method whoch was tested
+ * @param method refers to the method which was tested
* @param status describes the result of testing the method
* @return <tt>true</tt> if status is OK, <tt>false</tt> otherwise.
*