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 "@(#)CASSingleNodeTestSuite.java 1.6 08/10/16 SMI" 27 */ 28 29 package com.sun.jist.cas.test; 30 import com.sun.jist.cas.CASLogic; 31 import com.sun.jist.JISTLogic; 32 33 /** 34 * JIST - Sun StorageTek[tm] 5800 Servers - Single Node Test Branch 35 * <p> 36 * This Test Branch Verifies the ability to add, retrieve, and delete \ 37 * data and metadata on the Sun StorageTek[tm] 5800 \ 38 * Content Addressable Storage (CAS) Servers. 39 * <p> 40 * @author Angela.Duber-Smith (at) Sun.COM 41 * @since 5.0 42 */ 43 public class CASSingleNodeTestSuite extends CASLogic { 44 45 /** 46 * Method used to detect offshoot Test Branches 47 * of the Sun StorageTek[tm] 5800 Servers Single Node TestSuite. 48 * <p> 49 * This includes the following Test Branches: 50 * <p> 51 * @see CASSongUploadTest#getTree Sun StorageTek[tm] 5800 Servers 52 * Upload a Song Test Branch 53 * @see CASSongDnloadTest#getTree Sun StorageTek[tm] 5800 Servers 54 * Download a Song Test Branch 55 * @see CASSongDetailsTest#getTree Sun StorageTek[tm] 5800 Servers 56 * Add Details about a Song Test Branch 57 * @see CASSongDeleteTest#getTree Sun StorageTek[tm] 5800 Servers 58 * Delete a Song Test Branch 59 * @see CASSongWikiTest#getTree Sun StorageTek[tm] 5800 Servers 60 * Query Songs Test Branch 61 * @see CASPrintSchemaTest#getTree Sun StorageTek[tm] 5800 Servers 62 * Retrieve Schema Test Branch 63 * @see CASCreateSchemaTest#getTree Sun StorageTek[tm] 5800 Servers 64 * Create Schema Test Branch 65 * @see JISTLogic#getTree(String) 66 * @see JISTLogic#getTree(String[]) 67 */ 68 public static String[] getTree() { 69 return getTree(new String[] { 70 "com.sun.jist.cas.test.CASSongUploadTest", 71 "com.sun.jist.cas.test.CASSongDetailsTest", 72 "com.sun.jist.cas.test.CASSongWikiTest", 73 "com.sun.jist.cas.test.CASSongDeleteTest"}); 74 } 75 76 } /* Class End */ 77