Package kg.apc.jmeter.gui

Source Code of kg.apc.jmeter.gui.DeleteRowActionTest

/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package kg.apc.jmeter.gui;

import java.awt.event.ActionEvent;
import javax.swing.JButton;
import javax.swing.JPanel;
import javax.swing.JTable;
import org.apache.jmeter.gui.util.PowerTableModel;
import org.junit.After;
import org.junit.AfterClass;
import org.junit.Before;
import org.junit.BeforeClass;
import org.junit.Test;

public class DeleteRowActionTest {

    public DeleteRowActionTest() {
    }

    @BeforeClass
    public static void setUpClass() throws Exception {
    }

    @AfterClass
    public static void tearDownClass() throws Exception {
    }

    @Before
    public void setUp() {
    }

    @After
    public void tearDown() {
    }

    /**
     * Test of actionPerformed method, of class DeleteRowAction.
     */
    @Test
    public void testActionPerformed() {
        System.out.println("actionPerformed");
        ActionEvent e = null;
        DeleteRowAction instance = new DeleteRowAction(new JPanel(),
                new JTable(),
                new PowerTableModel(TableModelEmul.columnIdentifiers, TableModelEmul.columnClasses),
                new JButton());
        instance.actionPerformed(e);
    }
}
TOP

Related Classes of kg.apc.jmeter.gui.DeleteRowActionTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.