samples/apifest1/day3-intermezzo/pnejedly/against-stackbasedsolution/test/apifest/CircuitTest.java
author Jaroslav Tulach <jtulach@netbeans.org>
Sat, 14 Jun 2008 09:52:48 +0200
changeset 54 45b0d58e66ca
child 58 be49ca0fff33
permissions -rw-r--r--
Getting the solutions from the CVS, not just from the ZIP file
jtulach@54
     1
/*
jtulach@54
     2
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
jtulach@54
     3
 *
jtulach@54
     4
 * Copyright 1997-2007 Sun Microsystems, Inc. All rights reserved.
jtulach@54
     5
 *
jtulach@54
     6
 * The contents of this file are subject to the terms of either the GNU
jtulach@54
     7
 * General Public License Version 2 only ("GPL") or the Common
jtulach@54
     8
 * Development and Distribution License("CDDL") (collectively, the
jtulach@54
     9
 * "License"). You may not use this file except in compliance with the
jtulach@54
    10
 * License. You can obtain a copy of the License at
jtulach@54
    11
 * http://www.netbeans.org/cddl-gplv2.html
jtulach@54
    12
 * or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the
jtulach@54
    13
 * specific language governing permissions and limitations under the
jtulach@54
    14
 * License.  When distributing the software, include this License Header
jtulach@54
    15
 * Notice in each file and include the License file at
jtulach@54
    16
 * nbbuild/licenses/CDDL-GPL-2-CP.  Sun designates this
jtulach@54
    17
 * particular file as subject to the "Classpath" exception as provided
jtulach@54
    18
 * by Sun in the GPL Version 2 section of the License file that
jtulach@54
    19
 * accompanied this code. If applicable, add the following below the
jtulach@54
    20
 * License Header, with the fields enclosed by brackets [] replaced by
jtulach@54
    21
 * your own identifying information:
jtulach@54
    22
 * "Portions Copyrighted [year] [name of copyright owner]"
jtulach@54
    23
 *
jtulach@54
    24
 * Contributor(s):
jtulach@54
    25
 *
jtulach@54
    26
 * The Original Software is NetBeans. The Initial Developer of the Original
jtulach@54
    27
 * Software is Sun Microsystems, Inc. Portions Copyright 1997-2006 Sun
jtulach@54
    28
 * Microsystems, Inc. All Rights Reserved.
jtulach@54
    29
 *
jtulach@54
    30
 * If you wish your version of this file to be governed by only the CDDL
jtulach@54
    31
 * or only the GPL Version 2, indicate your decision by adding
jtulach@54
    32
 * "[Contributor] elects to include this software in this distribution
jtulach@54
    33
 * under the [CDDL or GPL Version 2] license." If you do not indicate a
jtulach@54
    34
 * single choice of license, a recipient has the option to distribute
jtulach@54
    35
 * your version of this file under either the CDDL, the GPL Version 2 or
jtulach@54
    36
 * to extend the choice of license to its licensees as provided above.
jtulach@54
    37
 * However, if you add GPL Version 2 code and therefore, elected the GPL
jtulach@54
    38
 * Version 2 license, then the option applies only if the new code is
jtulach@54
    39
 * made subject to such option by the copyright holder.
jtulach@54
    40
 */
jtulach@54
    41
package apifest;
jtulach@54
    42
jtulach@54
    43
import java.util.Arrays;
jtulach@54
    44
import java.util.Stack;
jtulach@54
    45
import junit.framework.TestCase;
jtulach@54
    46
import org.netbeans.apifest.boolcircuit.Circuit;
jtulach@54
    47
import org.netbeans.apifest.boolcircuit.CircuitFactory;
jtulach@54
    48
import org.netbeans.apifest.boolcircuit.Operation;
jtulach@54
    49
jtulach@54
    50
jtulach@54
    51
/** Write a test that works with version from day A and fails with version B.
jtulach@54
    52
 */
jtulach@54
    53
public class CircuitTest extends TestCase {
jtulach@54
    54
    public CircuitTest(String n) {
jtulach@54
    55
        super(n);
jtulach@54
    56
    }
jtulach@54
    57
    
jtulach@54
    58
    // no need to comment
jtulach@54
    59
jtulach@54
    60
    public void testSourceComp() throws Exception {
jtulach@54
    61
        Operation nand = new Operation() {
jtulach@54
    62
            public char evaluate(char i1, char i2) throws IllegalArgumentException {
jtulach@54
    63
               return i1 == '1' && i2 == '1' ? '0' : '1';
jtulach@54
    64
            }
jtulach@54
    65
        };
jtulach@54
    66
    }
jtulach@54
    67
jtulach@54
    68
    public void testSourceComp2() throws Exception {
jtulach@54
    69
        Operation nand = new Operation() {
jtulach@54
    70
            public char evaluate(char i1, char i2) throws IllegalArgumentException {
jtulach@54
    71
                evaluate(1, 2);
jtulach@54
    72
                return i1 == '1' && i2 == '1' ? '0' : '1';
jtulach@54
    73
            }
jtulach@54
    74
            // checker
jtulach@54
    75
            public char evaluate(double d1, double d2) {
jtulach@54
    76
                return '1';
jtulach@54
    77
            }
jtulach@54
    78
        };
jtulach@54
    79
    }
jtulach@54
    80
    
jtulach@54
    81
    public void testBinaryComp() throws Exception {
jtulach@54
    82
        Operation nand = new Operation() {
jtulach@54
    83
            public char evaluate(char i1, char i2) throws IllegalArgumentException {
jtulach@54
    84
               return i1 == '1' && i2 == '1' ? '0' : '1';
jtulach@54
    85
            }
jtulach@54
    86
        };
jtulach@54
    87
        Circuit cir = CircuitFactory.getBasicCircuit(nand);
jtulach@54
    88
jtulach@54
    89
        Stack<Character> s = new Stack<Character> ();
jtulach@54
    90
        s.addAll(Arrays.asList('0', '1'));
jtulach@54
    91
        
jtulach@54
    92
        assertEquals('1', cir.evaluate(s));
jtulach@54
    93
    }
jtulach@54
    94
jtulach@54
    95
}