sysmodelmgr/com.symbian.smt.gui.unittest/src/com/symbian/smt/gui/smtwidgets/SystemDefinitionFilesWidgetTest.java
author terytkon
Thu, 11 Mar 2010 19:08:43 +0200
changeset 0 522a326673b6
permissions -rw-r--r--
Moved swconfigapps content under oss repository.

// Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
// All rights reserved.
// This component and the accompanying materials are made available
// under the terms of "Eclipse Public License v1.0"
// which accompanies this distribution, and is available
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
//
// Initial Contributors:
// Nokia Corporation - initial contribution.
//
// Contributors:
//
// Description:
//

package com.symbian.smt.gui.smtwidgets;

import static org.junit.Assert.*;
import org.eclipse.swt.SWT;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Shell;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;

import com.symbian.smt.gui.smtwidgets.SystemDefinitionFilesWidget;

public class SystemDefinitionFilesWidgetTest {
	Display display;
	Shell shell;
	SystemDefinitionFilesWidget systemDefinitionFilesWidget;
	
//	/**
//	 * @throws java.lang.Exception
//	 */
//	@Before
//	public void setUp() throws Exception {
//		display = new Display();
//		shell = new Shell(display);
//		systemDefinitionFilesWidget = new SystemDefinitionFilesWidget(shell, SWT.NONE);
//	}
//
//	/**
//	 * @throws java.lang.Exception
//	 */
//	@After
//	public void tearDown() throws Exception {
//		display.dispose();
//	}
//
//	/**
//	 * Test method for {@link com.symbian.smt.gui.smtwidgets.SystemDefinitionFilesWidget#setSystemDefinitions(java.lang.String[])}.
//	 */
//	@Test
//	public final void testSetAndGetSystemDefinitions() {
//		String[] list = new String[] {"1", "2"};
//		
//		systemDefinitionFilesWidget.setSystemDefinitions(list);
//		
//		String[] results = systemDefinitionFilesWidget.getSystemDefinitions();
//
//		if (results.length != 2) {
//			fail("The list returned should contain 2 elements");
//		}
//	}
}