Trying to add FEST-Swing tests.

This commit is contained in:
Jonathan Bernard
2010-03-23 07:53:29 -05:00
parent ec690f8a98
commit 591fb91d17
12 changed files with 202 additions and 103 deletions

View File

@ -0,0 +1,33 @@
package com.jdbernard.pit.swing
import org.fest.swing.fixture.*
import griffon.test.FestSwingTestCase
import javax.swing.JDialog
class NewIssueDialogTestTests extends FestSwingTestCase {
// instance variables:
// app - current application
// window - value returned from initWindow()
// defaults to app.appFrames[0]
JDialog newIssueDialog
void testSomething() {
}
protected void onSetUp() throws Exception {
println app.appFrames
}
protected void onTearDown() throws Exception { }
/*
protected FrameFixture initWindow() {
return new FrameFixture(app.appFrames[0])
}
*/
}