summaryrefslogtreecommitdiff
path: root/qadevOOo/tests
diff options
context:
space:
mode:
Diffstat (limited to 'qadevOOo/tests')
-rw-r--r--qadevOOo/tests/java/complex/unoapi/CheckModuleAPI.java2
-rw-r--r--qadevOOo/tests/java/ifc/awt/tree/_XTreeNode.java2
-rw-r--r--qadevOOo/tests/java/ifc/beans/_XPropertyAccess.java4
-rw-r--r--qadevOOo/tests/java/ifc/beans/_XPropertyState.java2
-rw-r--r--qadevOOo/tests/java/ifc/datatransfer/_XDataFormatTranslator.java2
-rw-r--r--qadevOOo/tests/java/ifc/datatransfer/clipboard/_XClipboardNotifier.java2
-rw-r--r--qadevOOo/tests/java/ifc/frame/_XModuleManager.java2
-rwxr-xr-xqadevOOo/tests/java/ifc/frame/_XSynchronousFrameLoader.java4
-rw-r--r--qadevOOo/tests/java/ifc/i18n/_XExtendedIndexEntrySupplier.java2
-rw-r--r--qadevOOo/tests/java/ifc/sdbcx/_XDeleteRows.java2
-rw-r--r--qadevOOo/tests/java/ifc/sheet/_XSheetOperation.java2
-rw-r--r--qadevOOo/tests/java/ifc/table/_XTableChart.java2
-rw-r--r--qadevOOo/tests/java/ifc/ucb/_XCommandProcessor.java2
-rw-r--r--qadevOOo/tests/java/ifc/view/_XFormLayerAccess.java2
-rw-r--r--qadevOOo/tests/java/mod/_sw/SwXStyle.java2
15 files changed, 17 insertions, 17 deletions
diff --git a/qadevOOo/tests/java/complex/unoapi/CheckModuleAPI.java b/qadevOOo/tests/java/complex/unoapi/CheckModuleAPI.java
index 2727633ecd9b..0d0841c397d5 100644
--- a/qadevOOo/tests/java/complex/unoapi/CheckModuleAPI.java
+++ b/qadevOOo/tests/java/complex/unoapi/CheckModuleAPI.java
@@ -395,7 +395,7 @@ public class CheckModuleAPI extends ComplexTestCase
final String line = outs[i];
if (line.matches("[0-9]+? of [0-9]+? tests failed"))
{
- log.println("mached line: " + line);
+ log.println("matched line: " + line);
if (line.matches("0 of [0-9]+? tests failed"))
{
ok = true;
diff --git a/qadevOOo/tests/java/ifc/awt/tree/_XTreeNode.java b/qadevOOo/tests/java/ifc/awt/tree/_XTreeNode.java
index 498a9ecb7019..971dab8ac3d2 100644
--- a/qadevOOo/tests/java/ifc/awt/tree/_XTreeNode.java
+++ b/qadevOOo/tests/java/ifc/awt/tree/_XTreeNode.java
@@ -117,7 +117,7 @@ public class _XTreeNode extends MultiMethodTest {
mCount = oObj.getChildCount();
log.println("got count '" + mCount + "' of children");
if (mCount < 1 ) {
- log.println("ERROR: got a count < 1. The test object must be support morw then zero children => FAILED");
+ log.println("ERROR: got a count < 1. The test object must be support more then zero children => FAILED");
bOK = false;
}
tRes.tested("getChildCount()", bOK);
diff --git a/qadevOOo/tests/java/ifc/beans/_XPropertyAccess.java b/qadevOOo/tests/java/ifc/beans/_XPropertyAccess.java
index 965013336898..a2faae3de7e5 100644
--- a/qadevOOo/tests/java/ifc/beans/_XPropertyAccess.java
+++ b/qadevOOo/tests/java/ifc/beans/_XPropertyAccess.java
@@ -98,7 +98,7 @@ public class _XPropertyAccess extends MultiMethodTest {
* <CODE>XPropertyAccess.propertyToChange</CODE> has changed</LI>
* <li><CODE>com.sun.star.lang.IllegalArgumentException</CODE> was thrown if a <CODE>Integer</CODE>
* value was set to a <CODE>String</CODE> property</LI>
- * <li><CODE>com.sun.star.beans.UnknownPropertyException</CODE> was throen if an invalid property
+ * <li><CODE>com.sun.star.beans.UnknownPropertyException</CODE> was thrown if an invalid property
* was set</LI>
* </ul>
*/
@@ -112,7 +112,7 @@ public class _XPropertyAccess extends MultiMethodTest {
PropertyValue[] newProps = new PropertyValue[1];
newProps[0] = propertyToChange;
- log.println("try to set property vlaues given by object relation 'XPropertyAccess.propertyToChange'...");
+ log.println("try to set property values given by object relation 'XPropertyAccess.propertyToChange'...");
oObj.setPropertyValues(newProps);
} catch (UnknownPropertyException ex) {
diff --git a/qadevOOo/tests/java/ifc/beans/_XPropertyState.java b/qadevOOo/tests/java/ifc/beans/_XPropertyState.java
index d062af962683..b7df9cc7c23a 100644
--- a/qadevOOo/tests/java/ifc/beans/_XPropertyState.java
+++ b/qadevOOo/tests/java/ifc/beans/_XPropertyState.java
@@ -186,7 +186,7 @@ public class _XPropertyState extends MultiMethodTest {
result = false ;
} else {
if (ps.length != 1) {
- log.println("!!! Array lebgth returned is invalid - " +
+ log.println("!!! Array length returned is invalid - " +
ps.length) ;
result = false ;
}
diff --git a/qadevOOo/tests/java/ifc/datatransfer/_XDataFormatTranslator.java b/qadevOOo/tests/java/ifc/datatransfer/_XDataFormatTranslator.java
index 15bd2455ac17..3790b739f54b 100644
--- a/qadevOOo/tests/java/ifc/datatransfer/_XDataFormatTranslator.java
+++ b/qadevOOo/tests/java/ifc/datatransfer/_XDataFormatTranslator.java
@@ -52,7 +52,7 @@ public class _XDataFormatTranslator extends MultiMethodTest {
/**
* Gets data flavour from system data type, which was gotten
* from 'text/html' MIME type. <p>
- * Has <b>OK</b> status if DataFlavour returned has 'text/hrml' MIME
+ * Has <b>OK</b> status if DataFlavour returned has 'text/html' MIME
* type.
*/
public void _getDataFlavorFromSystemDataType() {
diff --git a/qadevOOo/tests/java/ifc/datatransfer/clipboard/_XClipboardNotifier.java b/qadevOOo/tests/java/ifc/datatransfer/clipboard/_XClipboardNotifier.java
index 5b6299e88b36..de60d1b879b2 100644
--- a/qadevOOo/tests/java/ifc/datatransfer/clipboard/_XClipboardNotifier.java
+++ b/qadevOOo/tests/java/ifc/datatransfer/clipboard/_XClipboardNotifier.java
@@ -65,7 +65,7 @@ public class _XClipboardNotifier extends MultiMethodTest {
/**
* Simpliest <code>XTransferable</code> interface implementation
- * which supports "text/htmp" data type.
+ * which supports "text/html" data type.
*/
class MyTransferable implements XTransferable {
DataFlavor[] supportedFlavors;
diff --git a/qadevOOo/tests/java/ifc/frame/_XModuleManager.java b/qadevOOo/tests/java/ifc/frame/_XModuleManager.java
index 48987e6e941d..cc8d84279f0f 100644
--- a/qadevOOo/tests/java/ifc/frame/_XModuleManager.java
+++ b/qadevOOo/tests/java/ifc/frame/_XModuleManager.java
@@ -100,7 +100,7 @@ public class _XModuleManager extends MultiMethodTest {
(Status.failed("Relation 'xModelSeq' not found.")) ;
}
- /** The method <CODE>identify()</CODE> was tesed for every entry in sequeze of
+ /** The method <CODE>identify()</CODE> was used for every entry in sequeze of
* object relations.
*/
public void _identify() {
diff --git a/qadevOOo/tests/java/ifc/frame/_XSynchronousFrameLoader.java b/qadevOOo/tests/java/ifc/frame/_XSynchronousFrameLoader.java
index a2776ce3aaaa..322138d11215 100755
--- a/qadevOOo/tests/java/ifc/frame/_XSynchronousFrameLoader.java
+++ b/qadevOOo/tests/java/ifc/frame/_XSynchronousFrameLoader.java
@@ -62,7 +62,7 @@ public class _XSynchronousFrameLoader extends MultiMethodTest {
/**
* Retrieves all relations. If optional relation
* <code>FrameLoader.Frame</code> not found
- * creates a new document and otains its frame for loading. <p>
+ * creates a new document and obtains its frame for loading. <p>
*
* Also <code>MediaDescriptor</code> is created using
* URL from <code>FrameLoader.URL</code> relation.
@@ -83,7 +83,7 @@ public class _XSynchronousFrameLoader extends MultiMethodTest {
XURLTransformer xURLTrans = null;
- // if frame is not contained in relations the writer frmame will be used.
+ // if frame is not contained in relations the writer frame will be used.
if (frame == null) {
try {
log.println( "creating a textdocument" );
diff --git a/qadevOOo/tests/java/ifc/i18n/_XExtendedIndexEntrySupplier.java b/qadevOOo/tests/java/ifc/i18n/_XExtendedIndexEntrySupplier.java
index 004b0144eff1..277ba56fe667 100644
--- a/qadevOOo/tests/java/ifc/i18n/_XExtendedIndexEntrySupplier.java
+++ b/qadevOOo/tests/java/ifc/i18n/_XExtendedIndexEntrySupplier.java
@@ -202,7 +202,7 @@ public class _XExtendedIndexEntrySupplier extends MultiMethodTest {
/**
* Helper class to handle the phonetic equivalence of unicode characters
- * This class delivers an amount oif unicode characters and the equivalent phonetics
+ * This class delivers an amount of unicode characters and the equivalent phonetics
* for the "getPhoneticCandidate" test. Euivalents are only usable for zh,CN locale.
*/
public static class UnicodeStringPair {
diff --git a/qadevOOo/tests/java/ifc/sdbcx/_XDeleteRows.java b/qadevOOo/tests/java/ifc/sdbcx/_XDeleteRows.java
index 1e412f27f5c4..af79864a52c8 100644
--- a/qadevOOo/tests/java/ifc/sdbcx/_XDeleteRows.java
+++ b/qadevOOo/tests/java/ifc/sdbcx/_XDeleteRows.java
@@ -43,7 +43,7 @@ public class _XDeleteRows extends MultiMethodTest {
* Retrieves bookmark using XRowLocate and deletes
* row pointed by this bookmark. <p>
* Has OK status if number of rows after deleting is less than before
- * and no exception rizes while method call, FAILED otherwise. <p>
+ * and no exception rises while method call, FAILED otherwise. <p>
*/
public void _deleteRows() {
XRowLocate xRowLocate = UnoRuntime.queryInterface(XRowLocate.class, oObj);
diff --git a/qadevOOo/tests/java/ifc/sheet/_XSheetOperation.java b/qadevOOo/tests/java/ifc/sheet/_XSheetOperation.java
index 222f60bd6e78..e01ac2e5fd62 100644
--- a/qadevOOo/tests/java/ifc/sheet/_XSheetOperation.java
+++ b/qadevOOo/tests/java/ifc/sheet/_XSheetOperation.java
@@ -70,7 +70,7 @@ public class _XSheetOperation extends MultiMethodTest {
/**
* Test calls the method and checks returned value. <p>
- * Has <b> OK </b> status if returned value is equal or greate than zero
+ * Has <b> OK </b> status if returned value is equal or greater than zero
* and no exceptions were thrown. <p>
*/
public void _computeFunction() {
diff --git a/qadevOOo/tests/java/ifc/table/_XTableChart.java b/qadevOOo/tests/java/ifc/table/_XTableChart.java
index d6efc5265050..1730d9f96076 100644
--- a/qadevOOo/tests/java/ifc/table/_XTableChart.java
+++ b/qadevOOo/tests/java/ifc/table/_XTableChart.java
@@ -83,7 +83,7 @@ public class _XTableChart extends MultiMethodTest {
/**
* Test calls the method and stores the range returned. <p>
* Has <b> OK </b> status if the method returns not
- * <code>null</code> valuie. <p>
+ * <code>null</code> value. <p>
*/
public void _getRanges() {
the_Ranges = oObj.getRanges();
diff --git a/qadevOOo/tests/java/ifc/ucb/_XCommandProcessor.java b/qadevOOo/tests/java/ifc/ucb/_XCommandProcessor.java
index d270850d78ca..72bc0250523b 100644
--- a/qadevOOo/tests/java/ifc/ucb/_XCommandProcessor.java
+++ b/qadevOOo/tests/java/ifc/ucb/_XCommandProcessor.java
@@ -170,7 +170,7 @@ public class _XCommandProcessor extends MultiMethodTest {
* The following method tests are to be completed successfully before :
* <ul>
* <li> <code> createCommandIdentifier() </code> : to have a unique
- * identifier which is used to abourt started command. </li>
+ * identifier which is used to abort started command. </li>
* </ul>
*/
public void _abort() {
diff --git a/qadevOOo/tests/java/ifc/view/_XFormLayerAccess.java b/qadevOOo/tests/java/ifc/view/_XFormLayerAccess.java
index 01228465caea..f6dfeb53a77b 100644
--- a/qadevOOo/tests/java/ifc/view/_XFormLayerAccess.java
+++ b/qadevOOo/tests/java/ifc/view/_XFormLayerAccess.java
@@ -60,7 +60,7 @@ public class _XFormLayerAccess extends MultiMethodTest {
}
/**
- * Test disables the FormDesignMode and calls the mthod. <p>
+ * Test disables the FormDesignMode and calls the method. <p>
* Has <b> OK </b> status if the method returns
* a not empty object of kind of com.sun.star.form.XFormController<P>
* The following method tests are to be completed successfully before :
diff --git a/qadevOOo/tests/java/mod/_sw/SwXStyle.java b/qadevOOo/tests/java/mod/_sw/SwXStyle.java
index 4bf2823be153..6a01b029e115 100644
--- a/qadevOOo/tests/java/mod/_sw/SwXStyle.java
+++ b/qadevOOo/tests/java/mod/_sw/SwXStyle.java
@@ -97,7 +97,7 @@ public class SwXStyle extends TestCase {
* Object relations created :
* <ul>
* <li> <code>'PoolStyle'</code> for
- * {@link ifc.style._XStyle} : slyle indexed '10' obtained from
+ * {@link ifc.style._XStyle} : style indexed '10' obtained from
* StyleFamily indexed '0' from text document using
* <code>XIndexAccess</code> interface.</li>
* </ul>