summaryrefslogtreecommitdiff
path: root/qadevOOo/tests
diff options
context:
space:
mode:
Diffstat (limited to 'qadevOOo/tests')
-rw-r--r--qadevOOo/tests/java/ifc/container/_XContainerQuery.java4
-rw-r--r--qadevOOo/tests/java/ifc/document/_XDocumentInsertable.java4
-rw-r--r--qadevOOo/tests/java/ifc/sdb/_RowSet.java2
-rw-r--r--qadevOOo/tests/java/ifc/system/_XSimpleMailClientSupplier.java2
-rw-r--r--qadevOOo/tests/java/ifc/table/_XAutoFormattable.java2
-rw-r--r--qadevOOo/tests/java/ifc/util/_XURLTransformer.java10
6 files changed, 12 insertions, 12 deletions
diff --git a/qadevOOo/tests/java/ifc/container/_XContainerQuery.java b/qadevOOo/tests/java/ifc/container/_XContainerQuery.java
index 2d7659bfb244..06f6301ded7d 100644
--- a/qadevOOo/tests/java/ifc/container/_XContainerQuery.java
+++ b/qadevOOo/tests/java/ifc/container/_XContainerQuery.java
@@ -43,7 +43,7 @@ import com.sun.star.container.XEnumeration;
* Normaly <code>createSubSetEnumerationByProperties()</code> covers all
* possible queries. But for special cases, i.e. sorted output, the function
* <code>createSubSetEnumerationByQuery()</code> was made. The special cases was not
-* implemented by default in the implemetation object. So this function could be
+* implemented by default in the implementation object. So this function could be
* marked as <code>optional</code></li>
* <ul> <p>
* <p>
@@ -90,7 +90,7 @@ public class _XContainerQuery extends MultiMethodTest {
boolean bResult = true;
if ( m_queryStrings == null ) {
- log.println("This object does not have an implemetation for this function");
+ log.println("This object does not have an implementation for this function");
// This is not a bug, because it's a feature for future purposes
} else {
for (int i = 0; i < m_queryStrings.length; i++){
diff --git a/qadevOOo/tests/java/ifc/document/_XDocumentInsertable.java b/qadevOOo/tests/java/ifc/document/_XDocumentInsertable.java
index d6a6576a2e11..3cec7554a81a 100644
--- a/qadevOOo/tests/java/ifc/document/_XDocumentInsertable.java
+++ b/qadevOOo/tests/java/ifc/document/_XDocumentInsertable.java
@@ -72,13 +72,13 @@ public class _XDocumentInsertable extends MultiMethodTest {
*/
public static abstract class InsertChecker {
/**
- * Must be overriden to check if document was
+ * Must be overridden to check if document was
* successfully inserted.
* @return <code>true</code> if document was inserted.
*/
public abstract boolean isInserted() ;
/**
- * Can be overriden to specify different than default
+ * Can be overridden to specify different than default
* document name. This document must be situated in
* the test document disrectory, and its name must
* be specified relational to this directory. By
diff --git a/qadevOOo/tests/java/ifc/sdb/_RowSet.java b/qadevOOo/tests/java/ifc/sdb/_RowSet.java
index 1f3097de6070..9a50fbd1f524 100644
--- a/qadevOOo/tests/java/ifc/sdb/_RowSet.java
+++ b/qadevOOo/tests/java/ifc/sdb/_RowSet.java
@@ -97,7 +97,7 @@ public class _RowSet extends MultiPropertyTest {
}
/**
- * Overriden method which tests all the properties
+ * Overridden method which tests all the properties
* with <code>SafeTester</code>.
*
* @see SafeTester
diff --git a/qadevOOo/tests/java/ifc/system/_XSimpleMailClientSupplier.java b/qadevOOo/tests/java/ifc/system/_XSimpleMailClientSupplier.java
index 58b4d343c1a6..d5a3e5b96fef 100644
--- a/qadevOOo/tests/java/ifc/system/_XSimpleMailClientSupplier.java
+++ b/qadevOOo/tests/java/ifc/system/_XSimpleMailClientSupplier.java
@@ -35,7 +35,7 @@ import com.sun.star.system.XSimpleMailClientSupplier;
* <ul>
* <li> <code>'SystemMailExist'</code> (of type <code>Boolean</code>):
* if <code>true</code> then <code>SimpleSystemMail</code> service
-* is available, if NOT then the service is not availabel or
+* is available, if NOT then the service is not availablel or
* OS doesn't has system mail.</li>
* <ul> <p>
* @see com.sun.star.system.XSimpleMailClientSupplier
diff --git a/qadevOOo/tests/java/ifc/table/_XAutoFormattable.java b/qadevOOo/tests/java/ifc/table/_XAutoFormattable.java
index 87d729bc962b..ed26a8817863 100644
--- a/qadevOOo/tests/java/ifc/table/_XAutoFormattable.java
+++ b/qadevOOo/tests/java/ifc/table/_XAutoFormattable.java
@@ -98,7 +98,7 @@ public class _XAutoFormattable extends MultiMethodTest {
// applying style
oObj.autoFormat(name);
- // getting new cell's backround.
+ // getting new cell's background.
Integer bkgrnd2;
try {
bkgrnd2 = (Integer) PS.getPropertyValue("CellBackColor");
diff --git a/qadevOOo/tests/java/ifc/util/_XURLTransformer.java b/qadevOOo/tests/java/ifc/util/_XURLTransformer.java
index f73b76c67be7..cdedf7dbd9d5 100644
--- a/qadevOOo/tests/java/ifc/util/_XURLTransformer.java
+++ b/qadevOOo/tests/java/ifc/util/_XURLTransformer.java
@@ -421,15 +421,15 @@ public class _XURLTransformer extends MultiMethodTest {
url.Complete = expectedCompleteFTP;
log.println("getPresentation('" + expectedCompleteFTP + "', false): ");
// the password must be masqurade with <****>
- String asterix = "";
+ String asterisk = "";
for (int n = 0 ; n < password.length(); n++){
- asterix += "*";
+ asterisk += "*";
}
- asterix = "<" + asterix.substring(1,asterix.length());
- asterix = asterix.substring(0,asterix.length()-1) + ">";
+ asterisk = "<" + asterisk.substring(1,asterisk.length());
+ asterisk = asterisk.substring(0,asterisk.length()-1) + ">";
presentation = oObj.getPresentation(url, false);
- String expectedPresentation = "ftp://" + user + ":" + asterix + "@" +
+ String expectedPresentation = "ftp://" + user + ":" + asterisk + "@" +
server + ":" + port + path + "/" + name;
res &= presentation.equals(expectedPresentation);
log.println("Resulted presentation: " + presentation);