1 // SECTION-START[License Header] 2 // <editor-fold defaultstate="collapsed" desc=" Generated License "> 3 /* 4 * Java Object Management and Configuration 5 * Copyright (C) Christian Schulte, 2012-013 6 * All rights reserved. 7 * 8 * Redistribution and use in source and binary forms, with or without 9 * modification, are permitted provided that the following conditions 10 * are met: 11 * 12 * o Redistributions of source code must retain the above copyright 13 * notice, this list of conditions and the following disclaimer. 14 * 15 * o Redistributions in binary form must reproduce the above copyright 16 * notice, this list of conditions and the following disclaimer in 17 * the documentation and/or other materials provided with the 18 * distribution. 19 * 20 * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, 21 * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY 22 * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL 23 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY DIRECT, INDIRECT, 24 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 25 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 26 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 29 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 30 * 31 * $JOMC: CommandExecutionExceptionTest.java 4712 2013-01-02 13:56:12Z schulte $ 32 * 33 */ 34 // </editor-fold> 35 // SECTION-END 36 package org.jomc.cli.commands.test; 37 38 import java.io.ObjectInputStream; 39 import org.jomc.cli.commands.CommandExecutionException; 40 import org.junit.Test; 41 import static org.junit.Assert.assertEquals; 42 43 // SECTION-START[Documentation] 44 // <editor-fold defaultstate="collapsed" desc=" Generated Documentation "> 45 /** 46 * Test cases for class {@code org.jomc.cli.commands.CommandExecutionException}. 47 * 48 * <dl> 49 * <dt><b>Identifier:</b></dt><dd>JOMC ⁑ CLI ⁑ Tests ⁑ Command Execution Exception Test</dd> 50 * <dt><b>Name:</b></dt><dd>JOMC ⁑ CLI ⁑ Tests ⁑ Command Execution Exception Test</dd> 51 * <dt><b>Abstract:</b></dt><dd>No</dd> 52 * <dt><b>Final:</b></dt><dd>No</dd> 53 * <dt><b>Stateless:</b></dt><dd>No</dd> 54 * </dl> 55 * 56 * @author <a href="mailto:cs@schulte.it">Christian Schulte</a> 1.2 57 * @version 1.4 58 */ 59 // </editor-fold> 60 // SECTION-END 61 // SECTION-START[Annotations] 62 // <editor-fold defaultstate="collapsed" desc=" Generated Annotations "> 63 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.4", comments = "See http://www.jomc.org/jomc/1.4/jomc-tools-1.4" ) 64 // </editor-fold> 65 // SECTION-END 66 public class CommandExecutionExceptionTest 67 { 68 // SECTION-START[CommandExecutionExceptionTest] 69 70 /** Constant to prefix relative resource names with. */ 71 private static final String ABSOLUTE_RESOURCE_NAME_PREFIX = "/org/jomc/cli/commands/test/"; 72 73 @Test 74 public final void testCommandExecutionException() throws Exception 75 { 76 final ObjectInputStream in = new ObjectInputStream( this.getClass().getResourceAsStream( 77 ABSOLUTE_RESOURCE_NAME_PREFIX + "CommandExecutionException.ser" ) ); 78 79 final CommandExecutionException e = (CommandExecutionException) in.readObject(); 80 in.close(); 81 82 assertEquals( "TEST", e.getMessage() ); 83 } 84 85 // SECTION-END 86 // SECTION-START[Constructors] 87 // <editor-fold defaultstate="collapsed" desc=" Generated Constructors "> 88 /** Creates a new {@code CommandExecutionExceptionTest} instance. */ 89 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.4", comments = "See http://www.jomc.org/jomc/1.4/jomc-tools-1.4" ) 90 public CommandExecutionExceptionTest() 91 { 92 // SECTION-START[Default Constructor] 93 super(); 94 // SECTION-END 95 } 96 // </editor-fold> 97 // SECTION-END 98 // SECTION-START[Dependencies] 99 // SECTION-END 100 // SECTION-START[Properties] 101 // SECTION-END 102 // SECTION-START[Messages] 103 // SECTION-END 104 }