blob: 80027fdd754b5ceca2c920cee3892178070d4866 [file] [log] [blame]
/**************************************************************
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*
*************************************************************/
package ifc.awt;
import lib.MultiMethodTest;
import com.sun.star.awt.XTimeField;
/**
* Testing <code>com.sun.star.awt.XTimeField</code>
* interface methods :
* <ul>
* <li><code> setTime()</code></li>
* <li><code> getTime()</code></li>
* <li><code> setMin()</code></li>
* <li><code> getMin()</code></li>
* <li><code> setMax()</code></li>
* <li><code> getMax()</code></li>
* <li><code> setFirst()</code></li>
* <li><code> getFirst()</code></li>
* <li><code> setLast()</code></li>
* <li><code> getLast()</code></li>
* <li><code> setEmpty()</code></li>
* <li><code> isEmpty()</code></li>
* <li><code> setStrictFormat()</code></li>
* <li><code> isStrictFormat()</code></li>
* </ul> <p>
* Test is <b> NOT </b> multithread compilant. <p>
* @see com.sun.star.awt.XTimeField
*/
public class _XTimeField extends MultiMethodTest {
public XTimeField oObj = null;
private boolean strict = false ;
/**
* Sets a new value and checks if it was correctly set. <p>
* Has <b> OK </b> status if set and get values are equal.
* The following method tests are to be completed successfully before :
* <ul>
* <li> <code> getTime </code> </li>
* </ul>
*/
public void _setTime() {
requiredMethod("getTime()") ;
boolean result = true ;
oObj.setTime(11150000) ;
result = oObj.getTime() == 11150000 ;
if (! result ) {
System.out.println("Getting "+oObj.getTime()+ " expected 11150000");
}
tRes.tested("setTime()", result) ;
}
/**
* Gets the current value. <p>
* Has <b> OK </b> status if no runtime exceptions occured
*/
public void _getTime() {
boolean result = true ;
oObj.getTime() ;
tRes.tested("getTime()", result) ;
}
/**
* Sets a new value and checks if it was correctly set. <p>
* Has <b> OK </b> status if set and get values are equal.
* The following method tests are to be completed successfully before :
* <ul>
* <li> <code> getMin </code> </li>
* </ul>
*/
public void _setMin() {
boolean result = true ;
oObj.setMin(4978) ;
result = oObj.getMin() == 4978 ;
tRes.tested("setMin()", result) ;
}
/**
* Gets the current value. <p>
* Has <b> OK </b> status if no runtime exceptions occured
*/
public void _getMin() {
boolean result = true ;
oObj.getMin() ;
tRes.tested("getMin()", result) ;
}
/**
* Sets a new value and checks if it was correctly set. <p>
* Has <b> OK </b> status if set and get values are equal.
* The following method tests are to be completed successfully before :
* <ul>
* <li> <code> getMax </code> </li>
* </ul>
*/
public void _setMax() {
boolean result = true ;
oObj.setMax(27856) ;
result = oObj.getMax() == 27856 ;
tRes.tested("setMax()", result) ;
}
/**
* Gets the current value. <p>
* Has <b> OK </b> status if no runtime exceptions occured
*/
public void _getMax() {
boolean result = true ;
oObj.getMax() ;
tRes.tested("getMax()", result) ;
}
/**
* Sets a new value and checks if it was correctly set. <p>
* Has <b> OK </b> status if set and get values are equal.
* The following method tests are to be completed successfully before :
* <ul>
* <li> <code> getFirst </code> </li>
* </ul>
*/
public void _setFirst() {
boolean result = true ;
oObj.setFirst(5118) ;
result = oObj.getFirst() == 5118 ;
if (!result) {
log.println("Set to " + 5118 + " but returned " + oObj.getFirst()) ;
}
tRes.tested("setFirst()", result) ;
}
/**
* Gets the current value. <p>
* Has <b> OK </b> status if no runtime exceptions occured
*/
public void _getFirst() {
boolean result = true ;
int val = oObj.getFirst() ;
log.println("getFirst() = " + val) ;
tRes.tested("getFirst()", result) ;
}
/**
* Sets a new value and checks if it was correctly set. <p>
* Has <b> OK </b> status if set and get values are equal.
* The following method tests are to be completed successfully before :
* <ul>
* <li> <code> getLast </code> </li>
* </ul>
*/
public void _setLast() {
boolean result = true ;
oObj.setLast(23450) ;
result = oObj.getLast() == 23450 ;
if (!result) {
log.println("Set to " + 23450 + " but returned " + oObj.getLast()) ;
}
tRes.tested("setLast()", result) ;
}
/**
* Gets the current value. <p>
* Has <b> OK </b> status if no runtime exceptions occured
*/
public void _getLast() {
boolean result = true ;
int val = oObj.getLast() ;
log.println("getLast() = " + val) ;
tRes.tested("getLast()", result) ;
}
/**
* Sets the value to empty. <p>
* Has <b> OK </b> status if no runtime exceptions occured
* The following method tests are to be completed successfully before :
* <ul>
* <li> <code> setTime </code> : value must be not empty </li>
* </ul>
*/
public void _setEmpty() {
requiredMethod("setTime()") ;
boolean result = true ;
oObj.setEmpty() ;
tRes.tested("setEmpty()", result) ;
}
/**
* Checks if the field is empty. <p>
* Has <b> OK </b> status if the value is empty.<p>
* The following method tests are to be completed successfully before :
* <ul>
* <li> <code> setEmpty() </code> </li>
* </ul>
*/
public void _isEmpty() {
requiredMethod("setEmpty()") ;
boolean result = true ;
result = oObj.isEmpty() ;
tRes.tested("isEmpty()", result) ;
}
/**
* Checks strict state. <p>
* Has <b> OK </b> status if strict format is set.
* The following method tests are to be completed successfully before :
* <ul>
* <li> <code> isStrictFormat </code> </li>
* </ul>
*/
public void _setStrictFormat() {
requiredMethod("isStrictFormat()") ;
boolean result = true ;
oObj.setStrictFormat(!strict) ;
result = oObj.isStrictFormat() == !strict ;
tRes.tested("setStrictFormat()", result) ;
}
/**
* Gets strict state and stores it. <p>
* Has <b> OK </b> status if no runtime exceptions occured.
*/
public void _isStrictFormat() {
boolean result = true ;
strict = oObj.isStrictFormat() ;
tRes.tested("isStrictFormat()", result) ;
}
}