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

/*
 * KeyboardAndShortcutsSuite.java
 *
 * Created on 23. srpen 2004, 19:16
 */

package org.netbeans.test.editor.suites.keyboard_shortcuts;

import junit.framework.TestResult;
import org.netbeans.junit.NbTestSuite;

/**
 *
 * @author  Petr Felenda
 */
public class KeyboardAndShortcutsSuite extends NbTestSuite {
    
    /** Creates a new instance of KeyboardAndShortcutsSuite */
    public KeyboardAndShortcutsSuite() {
        //super("KeyboardAndShortcutsSuite");
        addTestSuite(new FindInFile().getClass());
        addTest(new ReplaceInFile());
        TestResult result = new TestResult();
        this.run(result);
    }
    
    public void addTests() {
    }
    
    public static void main(String[] args){
        new KeyboardAndShortcutsSuite();
    }
    
}
... 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.