testdev/ite/src/com.nokia.testfw.launch/plugin.xml
changeset 1 96906a986c3b
equal deleted inserted replaced
0:f1112f777ce9 1:96906a986c3b
       
     1 <?xml version="1.0" encoding="UTF-8"?>
       
     2 <?eclipse version="3.2"?>
       
     3 <plugin>
       
     4    <extension-point id="testRunProcessors" name="%testRunProcessors.name" schema="schema/testRunProcessors.exsd"/>
       
     5 
       
     6    <extension
       
     7          point="org.eclipse.debug.core.launchConfigurationTypes">
       
     8       <launchConfigurationType
       
     9             sourceLocatorId="org.eclipse.cdt.debug.core.sourceLocator"
       
    10             sourcePathComputerId="com.nokia.cdt.debug.cw.symbian.CarbideSourcePathComputer"
       
    11             delegate="com.nokia.testfw.launch.TFWEmulationLaunchDelegate"
       
    12             delegateDescription="This Symian Unit Test Emulator Launcher supports running and debugging unit tests on Emulator"
       
    13             delegateName="SymbianUnitTest Emulator Launcher"
       
    14             id="com.nokia.testfw.launch.SUTEmulationLaunch"
       
    15             modes="run,debug"
       
    16             name="SymbianUnitTest Emulator Test"
       
    17             public="true">
       
    18       </launchConfigurationType>
       
    19       <launchConfigurationType
       
    20             sourceLocatorId="org.eclipse.cdt.debug.core.sourceLocator"
       
    21             sourcePathComputerId="com.nokia.cdt.debug.cw.symbian.CarbideSourcePathComputer"
       
    22             delegate="com.nokia.testfw.launch.TFWEmulationLaunchDelegate"
       
    23             delegateDescription="This Symbian Test Framework Emulator Launcher supports running and debugging STF tests on Emulator"
       
    24             delegateName="Symbian Test Framework Emulator Launcher"
       
    25             id="com.nokia.testfw.launch.STFEmulationLaunch"
       
    26             modes="run,debug"
       
    27             name="STF Emulator Test"
       
    28             public="true">
       
    29       </launchConfigurationType>
       
    30    </extension>
       
    31    <extension
       
    32          point="org.eclipse.debug.ui.launchConfigurationTabGroups">
       
    33       <launchConfigurationTabGroup
       
    34             class="com.nokia.testfw.launch.ui.SUTEmulationConfigTagGroup"
       
    35             id="com.nokia.testfw.launch.SUTEmulationConfigTagGroup"
       
    36             type="com.nokia.testfw.launch.SUTEmulationLaunch">
       
    37       </launchConfigurationTabGroup>
       
    38       <launchConfigurationTabGroup
       
    39             class="com.nokia.testfw.launch.ui.STFEmulationConfigTagGroup"
       
    40             id="com.nokia.testfw.launch.STFEmulationConfigTagGroup"
       
    41             type="com.nokia.testfw.launch.STFEmulationLaunch">
       
    42       </launchConfigurationTabGroup>
       
    43    </extension>
       
    44    <extension
       
    45          point="org.eclipse.debug.ui.launchConfigurationTypeImages">
       
    46       <launchConfigurationTypeImage
       
    47             configTypeID="com.nokia.testfw.launch.SUTEmulationLaunch"
       
    48             icon="icons/launch_config_file_16x16.png"
       
    49             id="com.nokia.testfw.launch.launchConfigurationTypeSUTImage">
       
    50       </launchConfigurationTypeImage>
       
    51       <launchConfigurationTypeImage
       
    52             configTypeID="com.nokia.testfw.launch.STFEmulationLaunch"
       
    53             icon="icons/launch_config_file_16x16.png"
       
    54             id="com.nokia.testfw.launch.launchConfigurationTypeSTFImage">
       
    55       </launchConfigurationTypeImage>
       
    56    </extension>
       
    57    <extension
       
    58          point="com.nokia.testfw.launch.testRunProcessors">
       
    59          <testRunProcessor class="com.nokia.testfw.launch.processor.SUTProcessor"/>
       
    60          <testRunProcessor class="com.nokia.testfw.launch.processor.STFProcessor"/>
       
    61    </extension>
       
    62 </plugin>