Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Corona/FAQ"

(Test Framework)
(Release Engineering)
Line 6: Line 6:
 
;Runtime:The functionality should be started/stopped via ''IApplication''.  Configure the '''osgi.applications''' property to start your application.
 
;Runtime:The functionality should be started/stopped via ''IApplication''.  Configure the '''osgi.applications''' property to start your application.
  
==Release Engineering==
+
== Release Engineering ==
 +
 
 +
=== What architecture environments are support by Corona's server-side platform? ===
 +
Corona's server-side environment supports the same architecture environments as Equinox.  Specific functionality per environment is provided via ''Bundle Fragments''.  Currently, the supported architectures are:
 +
* carbon.macosx
 +
* gtk.linux.ppc
 +
* gtk.linux.x86
 +
* gtk.linux.x86_64
 +
* gtk.solaris.sparc
 +
* motif.aix.ppc
 +
* win32.win32.x86
 +
* wpf.win32.x86
  
 
==Test Framework==
 
==Test Framework==

Revision as of 10:43, 27 February 2008

Platform

How do I deploy functionality to Corona's server-side environment?

Installation
Package your functionality into feature and install it into Corona via an update site.
Runtime
The functionality should be started/stopped via IApplication. Configure the osgi.applications property to start your application.

Release Engineering

What architecture environments are support by Corona's server-side platform?

Corona's server-side environment supports the same architecture environments as Equinox. Specific functionality per environment is provided via Bundle Fragments. Currently, the supported architectures are:

  • carbon.macosx
  • gtk.linux.ppc
  • gtk.linux.x86
  • gtk.linux.x86_64
  • gtk.solaris.sparc
  • motif.aix.ppc
  • win32.win32.x86
  • wpf.win32.x86

Test Framework

How are test cases registered with the Test Framework?

Corona's Test Framework provides the org.eclipse.corona.test.suite extension point. This is used to register a suite of test cases to be run by the Test Framework.

Back to the top