/**************************************************************
*
* 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.XDateField;
/**
* Testing com.sun.star.awt.XDateField
* interface methods :
*
setDate()
getDate()
setMin()
getMin()
setMax()
getMax()
setFirst()
getFirst()
setLast()
getLast()
setLongFormat()
isLongFormat()
setEmpty()
isEmpty()
setStrictFormat()
isStrictFormat()
* Test is NOT multithread compilant.
* @see com.sun.star.awt.XDateField */ public class _XDateField extends MultiMethodTest { public XDateField oObj = null; private boolean strict = false ; private boolean longFormat = false ; /** * Sets a new value and checks if it was correctly set.
* Has OK status if set and get values are equal. * The following method tests are to be completed successfully before : *
getTime
* Has OK status if no runtime exceptions occured */ public void _getDate() { boolean result = true ; oObj.getDate() ; tRes.tested("getDate()", result) ; } /** * Sets a new value and checks if it was correctly set.
* Has OK status if set and get values are equal. * The following method tests are to be completed successfully before : *
getMin
* Has OK 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.
* Has OK status if set and get values are equal. * The following method tests are to be completed successfully before : *
getMax
* Has OK 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.
* Has OK status if set and get values are equal. * The following method tests are to be completed successfully before : *
getFirst
* Has OK 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.
* Has OK status if set and get values are equal. * The following method tests are to be completed successfully before : *
getLast
* Has OK 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.
* Has OK status if no runtime exceptions occured * The following method tests are to be completed successfully before : *
setTime
: value must be not empty * Has OK status if the value is empty.
* The following method tests are to be completed successfully before : *
setEmpty()
* Has OK status if strict format is properly set. * The following method tests are to be completed successfully before : *
isStrictFormat
* Has OK status if no runtime exceptions occured. */ public void _isStrictFormat() { boolean result = true ; strict = oObj.isStrictFormat() ; tRes.tested("isStrictFormat()", result) ; } /** * Checks long format state.
* Has OK status if long format is properly set. * The following method tests are to be completed successfully before : *
isLongFormat
* Has OK status if no runtime exceptions occured. */ public void _isLongFormat() { boolean result = true ; longFormat = oObj.isLongFormat() ; tRes.tested("isLongFormat()", result) ; } }