/* * Copyright (C) 2008 Universidade Federal de Campina Grande * * This file is part of OurGrid. * * OurGrid is free software: you can redistribute it and/or modify it under the * terms of the GNU Lesser General Public License as published by the Free * Software Foundation, either version 3 of the License, or (at your option) * any later version. * * This program is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. * */ package org.ourgrid.acceptance.suites; import org.junit.runner.RunWith; import org.junit.runners.Suite; import org.junit.runners.Suite.SuiteClasses; import org.ourgrid.acceptance.peer.AT_0004; import org.ourgrid.acceptance.peer.AT_0005; import org.ourgrid.acceptance.peer.AT_0006; import org.ourgrid.acceptance.peer.AT_0007; import org.ourgrid.acceptance.peer.AT_0008; import org.ourgrid.acceptance.peer.AT_0009; import org.ourgrid.acceptance.peer.AT_0010; import org.ourgrid.acceptance.peer.AT_0012; import org.ourgrid.acceptance.peer.AT_0013; import org.ourgrid.acceptance.peer.AT_0014; import org.ourgrid.acceptance.peer.AT_0019; import org.ourgrid.acceptance.peer.AT_0020; import org.ourgrid.acceptance.peer.AT_0021; import org.ourgrid.acceptance.peer.AT_0022; import org.ourgrid.acceptance.peer.AT_0023; import org.ourgrid.acceptance.peer.AT_0024; import org.ourgrid.acceptance.peer.AT_0027; import org.ourgrid.acceptance.peer.AT_0028; @RunWith(Suite.class) @SuiteClasses( { AT_0004.class, AT_0005.class, AT_0006.class, AT_0007.class, AT_0008.class, AT_0009.class, AT_0010.class, AT_0012.class, AT_0013.class, AT_0014.class, AT_0019.class, AT_0020.class, AT_0021.class, AT_0022.class, AT_0023.class, AT_0024.class, AT_0027.class, AT_0028.class }) public class Suite6_Peer_5 { }