alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

What this is

This file is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Other links

The source code

/*
 *                 Sun Public License Notice
 * 
 * The contents of this file are subject to the Sun Public License
 * Version 1.0 (the "License"). You may not use this file except in
 * compliance with the License. A copy of the License is available at
 * http://www.sun.com/
 * 
 * The Original Code is NetBeans. The Initial Developer of the Original
 * Code is Sun Microsystems, Inc. Portions Copyright 1997-2000 Sun
 * Microsystems, Inc. All Rights Reserved.
 *
 * BrowserPropertyEditorTest.java
 * NetBeans JUnit based test
 *
 * Created on November 2, 2001, 10:41 AM
 */

package org.netbeans.modules.extbrowser;

import junit.framework.*;
import org.netbeans.junit.*;
import org.openide.util.NbBundle;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;

/**
 *
 * @author radim.kubacki@sun.com
 */
public class BrowserPropertyEditorTest extends NbTestCase {
    
    public BrowserPropertyEditorTest (java.lang.String testName) {
        super (testName);
    }
    
    public static void main (java.lang.String[] args) {
        junit.textui.TestRunner.run (suite ());
    }
    
    /** Test of getAsText method, of class org.netbeans.modules.extbrowser.BrowserPropertyEditor. */
    public void testGetAsText () {
        System.out.println ("testGetAsText");
        
        testObject.setAsText ("NETSCAPE");
        if (!"NETSCAPE".equals (testObject.getAsText ()))
            fail ("getAsText failed.");
    }
    
    /** Test of setAsText method, of class org.netbeans.modules.extbrowser.BrowserPropertyEditor. */
    public void testSetAsText () {
        System.out.println ("testSetAsText");
        
        String [] vals = testObject.getTags ();
        for (int i=0; i< vals.length; i++) {
            testObject.setAsText (vals[i]);
        }
    }
    
    /** Test of getTags method, of class org.netbeans.modules.extbrowser.BrowserPropertyEditor. 
     *  

* Compares results of this call with golden file. */ public void testGetTags () { System.out.println ("testGetTags"); File test; File pass; FileWriter wr; String [] tags = testObject.getTags (); java.io.PrintStream ps = getRef (); if (tags != null) { for (int i = 0; i < tags.length; i++) { ps.println (tags[i]); } } else { fail ("No tags found!"); } ps.close (); compareReferenceFiles (); } // Add test methods here, they have to start with 'test' name. // for example: // public void testHello() {} protected BrowserPropertyEditor testObject; protected void setUp () { testObject = new BrowserPropertyEditor (); } public static Test suite () { TestSuite suite = new NbTestSuite (BrowserPropertyEditorTest.class); return suite; } }

... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.