Skip to main content
summaryrefslogblamecommitdiffstats
blob: 7ccb349e6f5acd9541ef85aed47886fa7f248b41 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13












                                                                                 
                                                                                 






                                
                                                                                         


                                   
/*******************************************************************************
 * Copyright (c) 2013 Boeing.
 * 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:
 *     Boeing - initial API and implementation
 *******************************************************************************/
package org.eclipse.osee.orcs.account.admin;

import org.eclipse.osee.orcs.account.admin.integration.OsgiIntegrationTestSuite;
import org.eclipse.osee.orcs.account.admin.internal.OrcsAccountInternalTestSuite;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;

/**
 * @author Roberto E. Escobar
 */
@RunWith(Suite.class)
@Suite.SuiteClasses({OsgiIntegrationTestSuite.class, OrcsAccountInternalTestSuite.class})
public class OrcsAccountTestSuite {
   // Test Suite
}

Back to the top