Home | History | Annotate | Download | only in test
      1 /*
      2  * CDDL HEADER START
      3  *
      4  * The contents of this file are subject to the terms of the
      5  * Common Development and Distribution License (the "License").
      6  * You may not use this file except in compliance with the License.
      7  *
      8  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
      9  * or http://www.opensolaris.org/os/licensing.
     10  * See the License for the specific language governing permissions
     11  * and limitations under the License.
     12  *
     13  * When distributing Covered Code, include this CDDL HEADER in each
     14  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
     15  * If applicable, add the following below this CDDL HEADER, with the
     16  * fields enclosed by brackets "[]" replaced with your own identifying
     17  * information: Portions Copyright [yyyy] [name of copyright owner]
     18  *
     19  * CDDL HEADER END
     20  */
     21 
     22 /*
     23  * Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
     24  * Use is subject to license terms.
     25  *
     26  * ident	"@(#)FCSingleNodeTestSuite.java	1.7	08/10/16 SMI"
     27  */
     28 
     29 package com.sun.jist.fibrechannel.test;
     30 import com.sun.jist.JISTLogic;
     31 import com.sun.jist.fibrechannel.FCLogic;
     32 import com.sun.jist.fibrechannel.test.FCLoginTestSuite;
     33 import com.sun.jist.fibrechannel.test.FCManagementTestSuite;
     34 import com.sun.jist.fibrechannel.test.FCScsiEncapsulateTestSuite;
     35 
     36 /**
     37  * JIST - ANSI T10 Fibre Channel Protocol and ANSI T11 Fibre Channel Single
     38  * Node Test Suite Branch.
     39  * <p>
     40  * Verifies Compliance to ANSI T11 Fibre Channel Link Service.
     41  * <p>
     42  * @author	Nigusu.Teshale (at) Sun.COM
     43  * @since	5.0
     44  */
     45 public class FCSingleNodeTestSuite extends FCLogic {
     46 
     47 /**
     48  * Method used to detect offshoot Test Suites.
     49  * <p>
     50  * This includes the following Test Suites:
     51  * <p>
     52  * @see FCLoginTestSuite#getTree ANSI T11 FC Login Test Suite
     53  * @see FCManagementTestSuite#getTree ANSI T11 FC Management Test Suite
     54  * @see FCScsiEncapsulateTestSuite#getTree ANSI T11 FC SCSI Encapsulated
     55  *      Test Suite
     56  */
     57 public static String[] getTree() {
     58 	return getTree(new String[] {
     59 	    "com.sun.jist.fibrechannel.test.FCLoginTestSuite",
     60 	    "com.sun.jist.fibrechannel.test.FCManagementTestSuite",
     61 	    "com.sun.jist.fibrechannel.test.FCScsiEncapsulateTestSuite"});
     62 }
     63 
     64 } /* Class End */
     65