samples/apifest1/day3-intermezzo/pnejedly/against-elementbasedsolution/test/apifest/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
jtulach@153
     1
/*
jtulach@153
     2
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
jtulach@153
     3
 *
jtulach@153
     4
 * Copyright 1997-2007 Sun Microsystems, Inc. All rights reserved.
jtulach@153
     5
 *
jtulach@153
     6
 * The contents of this file are subject to the terms of either the GNU
jtulach@153
     7
 * General Public License Version 2 only ("GPL") or the Common
jtulach@153
     8
 * Development and Distribution License("CDDL") (collectively, the
jtulach@153
     9
 * "License"). You may not use this file except in compliance with the
jtulach@153
    10
 * License. You can obtain a copy of the License at
jtulach@153
    11
 * http://www.netbeans.org/cddl-gplv2.html
jtulach@153
    12
 * or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the
jtulach@153
    13
 * specific language governing permissions and limitations under the
jtulach@153
    14
 * License.  When distributing the software, include this License Header
jtulach@153
    15
 * Notice in each file and include the License file at
jtulach@153
    16
 * nbbuild/licenses/CDDL-GPL-2-CP.  Sun designates this
jtulach@153
    17
 * particular file as subject to the "Classpath" exception as provided
jtulach@153
    18
 * by Sun in the GPL Version 2 section of the License file that
jtulach@153
    19
 * accompanied this code. If applicable, add the following below the
jtulach@153
    20
 * License Header, with the fields enclosed by brackets [] replaced by
jtulach@153
    21
 * your own identifying information:
jtulach@153
    22
 * "Portions Copyrighted [year] [name of copyright owner]"
jtulach@153
    23
 *
jtulach@153
    24
 * Contributor(s):
jtulach@153
    25
 *
jtulach@153
    26
 * The Original Software is NetBeans. The Initial Developer of the Original
jtulach@153
    27
 * Software is Sun Microsystems, Inc. Portions Copyright 1997-2006 Sun
jtulach@153
    28
 * Microsystems, Inc. All Rights Reserved.
jtulach@153
    29
 *
jtulach@153
    30
 * If you wish your version of this file to be governed by only the CDDL
jtulach@153
    31
 * or only the GPL Version 2, indicate your decision by adding
jtulach@153
    32
 * "[Contributor] elects to include this software in this distribution
jtulach@153
    33
 * under the [CDDL or GPL Version 2] license." If you do not indicate a
jtulach@153
    34
 * single choice of license, a recipient has the option to distribute
jtulach@153
    35
 * your version of this file under either the CDDL, the GPL Version 2 or
jtulach@153
    36
 * to extend the choice of license to its licensees as provided above.
jtulach@153
    37
 * However, if you add GPL Version 2 code and therefore, elected the GPL
jtulach@153
    38
 * Version 2 license, then the option applies only if the new code is
jtulach@153
    39
 * made subject to such option by the copyright holder.
jtulach@153
    40
 */
jtulach@54
    41
package apifest;
jtulach@54
    42
jtulach@54
    43
import junit.framework.TestCase;
jtulach@54
    44
import org.netbeans.apifest.boolcircuit.Circuit;
jtulach@54
    45
jtulach@54
    46
jtulach@54
    47
/** Write a test that works with version from day A and fails with version B.
jtulach@54
    48
 */
jtulach@59
    49
// BEGIN: apifest.day3.against-elementbasedsolution
jtulach@54
    50
public class CircuitTest extends TestCase {
jtulach@54
    51
    public CircuitTest(String n) {
jtulach@54
    52
        super(n);
jtulach@54
    53
    }
jtulach@54
    54
    /**
jtulach@153
    55
     * OK, elementbasedsolution looked bulletproof. Every code path was exactly
jtulach@153
    56
     * the same as in the initial version. Except one.     
jtulach@54
    57
     */
jtulach@54
    58
    public void testEvaluateWithoutAssign() throws Exception {
jtulach@54
    59
        Circuit.Variable var = Circuit.var();
jtulach@54
    60
        Circuit.Element circuit = Circuit.not(var);
jtulach@54
    61
jtulach@54
    62
        assertTrue (circuit.result());
jtulach@54
    63
    }
jtulach@54
    64
}
jtulach@59
    65
// END: apifest.day3.against-elementbasedsolution
jtulach@59
    66
jtulach@59
    67