samples/apifest1/boolcircuit/test/org/netbeans/apifest/boolcircuit/CircuitTest.java
author Jaroslav Tulach <jtulach@netbeans.org>
Sat, 14 Jun 2008 09:58:08 +0200
changeset 153 b5cbb797ec0a
parent 133 50bf1b976c0d
child 154 0fd5e9c500b9
permissions -rw-r--r--
up to line 2000
     1 /*
     2  * The contents of this file are subject to the terms of the Common Development
     3  * and Distribution License (the License). You may not use this file except in
     4  * compliance with the License.
     5  *
     6  * You can obtain a copy of the License at http://www.netbeans.org/cddl.html
     7  * or http://www.netbeans.org/cddl.txt.
     8  *
     9  * When distributing Covered Code, include this CDDL Header Notice in each file
    10  * and include the License file at http://www.netbeans.org/cddl.txt.
    11  * If applicable, add the following below the CDDL Header, with the fields
    12  * enclosed by brackets [] replaced by your own identifying information:
    13  * "Portions Copyrighted [year] [name of copyright owner]"
    14  *
    15  * The Original Software is NetBeans. The Initial Developer of the Original
    16  * Software is Sun Microsystems, Inc. Portions Copyright 1997-2006 Sun
    17  * Microsystems, Inc. All Rights Reserved.
    18  */
    19 
    20 package org.netbeans.apifest.boolcircuit;
    21 
    22 import java.security.CodeSource;
    23 import java.security.Permission;
    24 import java.security.PermissionCollection;
    25 import java.security.Policy;
    26 import java.util.Collection;
    27 import java.util.Collections;
    28 import java.util.Enumeration;
    29 import junit.framework.TestCase;
    30 import junit.framework.*;
    31 
    32 // BEGIN: apifest.CircuitTest
    33 /** The initial quest for this APIFest is to create an API for boolean 
    34  * circuits. Such API shall be able to compose a boolean circuit from
    35  * basic elements and evaluate the result given initial values for 
    36  * input variables.
    37  * <p>
    38  * The basic elements include:
    39  * <ul>
    40  *   <li>negation - has one input and one output and changes 0 on input to 
    41  *          on output 1 and 1 to 0
    42  *   <li>and - has two inputs and one output. The output is 1 only if both 
    43  *          inputs are 1, otherwise it is 0
    44  *   <li>or - has two inputs and one output. The output is 1 always, except
    45  *          in the case when both inputs are 0
    46  * </ul>
    47  *
    48  * <p>
    49  * The boolean circuit can be used to represent boolean formulas and compute
    50  * the results for certain values of its inputs. The individual tasks described
    51  * as tests bellow.
    52  *
    53  * <p>
    54  * Links of interest:
    55  * <ul>
    56  *   <li><a href="http://en.wikipedia.org/wiki/Truth_table">Truth table</a>
    57  *   <li><a href="http://en.wikipedia.org/wiki/Tautology_(logic)">Taugology</a>
    58  * </ul>
    59  */
    60 public class CircuitTest extends TestCase {
    61     static {
    62         // your code shall run without any permissions
    63     }
    64     
    65     public CircuitTest(String testName) {
    66         super(testName);
    67     }
    68 
    69     protected void setUp() throws Exception {
    70     }
    71 
    72     protected void tearDown() throws Exception {
    73     }
    74     
    75     
    76     /** 
    77      * Create a circuit to evaluate x1 and x2 and then
    78      * verify that its result is false for input (false, true) and
    79      * it is true for input (true, true).
    80      */
    81     public void testX1andX2() {
    82         fail("task1");
    83     }
    84     
    85     /** 
    86      * Create a circuit to evaluate (x1 and x2) or x3 and then
    87      * verify that its result is false for input (false, true, false) and
    88      * it is true for input (false, false, true).
    89      */
    90     public void testX1andX2orX3() {
    91         fail("task2");
    92     }
    93     /** 
    94      * Create a circuit to evaluate (x1 or not(x1)) and then
    95      * verify that its result is true for all values of x1.
    96      */
    97     public void testAlwaysTrue() {
    98         fail("task3");
    99     }
   100     
   101 }
   102 // END: apifest.CircuitTest