Code Search for Developers
 
 
  

AllUITests.java from BIRT at Krugle


Show AllUITests.java syntax highlighted

/*******************************************************************************
 * Copyright (c) 2004 Actuate Corporation. All rights reserved. This program and
 * the accompanying materials are made available under the terms of the Eclipse
 * Public License v1.0 which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 * 
 * Contributors: Actuate Corporation - initial API and implementation
 ******************************************************************************/

package org.eclipse.birt.report.designer.ui;

import junit.framework.Test;
import junit.framework.TestSuite;

import org.eclipse.birt.report.designer.internal.ui.dnd.DNDUtilTest;

public class AllUITests
{

	public static Test suite( )
	{
		TestSuite suite = new TestSuite( "Test for org.eclipse.birt.report.designer.ui" );
		// $JUnit-BEGIN$
		suite.addTest( new TestSuite( SimpleUITest.class ) );
		suite.addTest( new TestSuite( ReportPlatformUIImagesTest.class ) );
		suite.addTest( new TestSuite( DNDUtilTest.class ) );
		suite.addTest( new TestSuite( ReportPluginTest.class ) );
		// Remove unit test which server can't run successfully
		// suite.addTest( new TestSuite( InsertInLayoutUtilTest.class ) );

		suite.addTest( org.eclipse.birt.report.designer.ui.extensions.AllTests.suite( ) );
		suite.addTest( org.eclipse.birt.report.designer.internal.ui.palette.AllTests.suite( ) );
		// suite.addTest(
		// org.eclipse.birt.report.designer.internal.ui.views.attributes.page.AllTests.suite(
		// ) );
		suite.addTest( org.eclipse.birt.report.designer.ui.views.attributes.AllTests.suite( ) );
		// $JUnit-END$
		return suite;
	}
}



See more files for this project here

BIRT

BIRT is an open source, Eclipse-based reporting system that integrates with your application to produce compelling reports for both web and PDF.

Project homepage: http://www.eclipse.org/birt/phoenix/
Programming language(s): Java,XML
License: gpl2

  extensions/
    AllTests.java
    ExtendedElementUIPointTest.java
    ExtensionPointManagerTest.java
    IReportItemUITest.java
  views/
    attributes/
      AllTests.java
      DefaultPageGeneratorTest.java
  AllUITests.java
  ReportPlatformUIImagesTest.java
  ReportPluginTest.java
  SimpleUITest.java