sysmodelmgr/com.symbian.smt.gui.unittest/src/com/symbian/smt/gui/unittest/DummyTest.java
changeset 0 522a326673b6
equal deleted inserted replaced
-1:000000000000 0:522a326673b6
       
     1 // Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
       
     2 // All rights reserved.
       
     3 // This component and the accompanying materials are made available
       
     4 // under the terms of "Eclipse Public License v1.0"
       
     5 // which accompanies this distribution, and is available
       
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 //
       
    15 
       
    16 package com.symbian.smt.gui.unittest;
       
    17 
       
    18 import org.eclipse.core.runtime.Plugin;
       
    19 import org.junit.After;
       
    20 import org.junit.Assert;
       
    21 import org.junit.Before;
       
    22 import org.junit.Test;
       
    23 
       
    24 public class DummyTest {
       
    25 
       
    26 	@Before
       
    27 	public void setUp() throws Exception {
       
    28 	}
       
    29 
       
    30 	@After
       
    31 	public void tearDown() throws Exception {
       
    32 	}
       
    33 
       
    34 	@Test
       
    35 	public void testActivator() {
       
    36 		Plugin plugin = com.symbian.smt.gui.Activator.getDefault();
       
    37 		Assert.assertTrue(true);
       
    38 	}
       
    39 
       
    40 	@Test
       
    41 	public void testStartBundleContext() {
       
    42 		Assert.assertTrue(true);
       
    43 	}
       
    44 
       
    45 	@Test
       
    46 	public void testStopBundleContext() {
       
    47 		Assert.assertTrue(true);
       
    48 	}
       
    49 
       
    50 	@Test
       
    51 	public void testGetDefault() {
       
    52 		Assert.assertTrue(true);
       
    53 	}
       
    54 
       
    55 }