/************************************************************** * * 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 mod._i18n; import java.io.PrintWriter; import lib.StatusException; import lib.TestCase; import lib.TestEnvironment; import lib.TestParameters; import util.SOfficeFactory; import util.utils; import com.sun.star.lang.Locale; import com.sun.star.lang.XComponent; import com.sun.star.lang.XMultiServiceFactory; import com.sun.star.text.XTextDocument; import com.sun.star.text.XTextRange; import com.sun.star.uno.UnoRuntime; import com.sun.star.uno.XInterface; /** * Test for object which is represented by service * com.sun.star.i18n.BreakIterator.

* Object implements the following interfaces : *

* This object test is NOT designed to be run in several * threads concurently. * @see ifc.i18n._XBreakIterator */ public class BreakIterator extends TestCase { XComponent xTextDoc; /** * Loads a Text document with name 'Iterator.sxw' from test * documents directory */ protected void initialize( TestParameters tParam, PrintWriter log ) { SOfficeFactory SOF = SOfficeFactory.getFactory( (XMultiServiceFactory)tParam.getMSF() ); try { log.println( "creating a drawdoc" ); xTextDoc = SOF.loadDocument(utils.getFullTestURL("Iterator.sxw")); } catch ( com.sun.star.uno.Exception e ) { // Some exception occured.FAILED e.printStackTrace( log ); throw new StatusException( "Couldn't load document", e ); } } /** * Creating a Testenvironment for the interfaces to be tested. * Creates an instance of the service * com.sun.star.i18n.BreakIterator. */ public TestEnvironment createTestEnvironment( TestParameters Param, PrintWriter log ) throws StatusException { XInterface oObj = null; Object oInterface = null; try { XMultiServiceFactory xMSF = (XMultiServiceFactory)Param.getMSF(); oInterface = xMSF.createInstance( "com.sun.star.i18n.BreakIterator" ); } catch( com.sun.star.uno.Exception e ) { log.println("Can't create an object." ); throw new StatusException( "Can't create an object", e ); } oObj = (XInterface) oInterface; TestEnvironment tEnv = new TestEnvironment( oObj ); tEnv.addObjRelation("Locale", new Locale("en", "US", "")); XTextDocument xDoc = (XTextDocument)UnoRuntime.queryInterface (XTextDocument.class, xTextDoc); XTextRange xTextRange = (XTextRange)xDoc.getText(); tEnv.addObjRelation("UnicodeString", xTextRange.getString()); return tEnv; } // finish method getTestEnvironment /** * Disposes the Text document loaded before. */ protected void cleanup( TestParameters tParam, PrintWriter log ) { log.println( " disposing xTextDoc " ); xTextDoc.dispose(); } } // finish class BreakIterator