/** * Run the void actionPerformed(ActionEvent) method test. * * @throws Exception * @generatedBy CodePro at 5/31/15 5:22 PM */ @Test public void testActionPerformed_fixture_2() throws Exception { DefaultSettingsController fixture2 = getFixture(); ActionEvent e = new ActionEvent(new Object(), 0, "", -1L, 0); fixture2.actionPerformed(e); // add additional test code here }
/** * Run the void actionPerformed(ActionEvent) method test. * * @throws Exception * @generatedBy CodePro at 5/31/15 5:22 PM */ @Test public void testActionPerformed_fixture_6() throws Exception { DefaultSettingsController fixture2 = getFixture(); ActionEvent e = new ActionEvent(new Object(), 7, "An��t-1.0.txt", 7); fixture2.actionPerformed(e); // add additional test code here }
/** * Run the void actionPerformed(ActionEvent) method test. * * @throws Exception * @generatedBy CodePro at 5/31/15 5:22 PM */ @Test public void testActionPerformed_fixture_7() throws Exception { DefaultSettingsController fixture2 = getFixture(); ActionEvent e = new ActionEvent(new Object(), Integer.MIN_VALUE, "", Long.MIN_VALUE, Integer.MAX_VALUE); fixture2.actionPerformed(e); // add additional test code here }
/** * Run the void actionPerformed(ActionEvent) method test. * * @throws Exception * @generatedBy CodePro at 5/31/15 5:22 PM */ @Test public void testActionPerformed_fixture_11() throws Exception { DefaultSettingsController fixture2 = getFixture(); ActionEvent e = new ActionEvent((Object) null, 1, "0123456789", 0L, 1); fixture2.actionPerformed(e); // add additional test code here // An unexpected exception was thrown in user code while executing this test: // java.lang.IllegalArgumentException: null source // at java.util.EventObject.<init>(EventObject.java:56) // at java.awt.AWTEvent.<init>(AWTEvent.java:337) // at java.awt.event.ActionEvent.<init>(ActionEvent.java:225) }