Serious bug-fixing, yo.
This commit is contained in:
@@ -1,33 +0,0 @@
|
||||
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])
|
||||
}
|
||||
*/
|
||||
}
|
@@ -1,10 +0,0 @@
|
||||
import griffon.util.IGriffonApplication
|
||||
|
||||
class NewIssueDialogTests extends GroovyTestCase {
|
||||
|
||||
IGriffonApplication app
|
||||
|
||||
void testSomething() {
|
||||
|
||||
}
|
||||
}
|
@@ -1,10 +0,0 @@
|
||||
import griffon.util.IGriffonApplication
|
||||
|
||||
class PITTests extends GroovyTestCase {
|
||||
|
||||
IGriffonApplication app
|
||||
|
||||
void testSomething() {
|
||||
|
||||
}
|
||||
}
|
@@ -1,10 +0,0 @@
|
||||
import griffon.util.IGriffonApplication
|
||||
|
||||
class PitSwingTests extends GroovyTestCase {
|
||||
|
||||
IGriffonApplication app
|
||||
|
||||
void testSomething() {
|
||||
|
||||
}
|
||||
}
|
@@ -1,10 +0,0 @@
|
||||
import griffon.util.IGriffonApplication
|
||||
|
||||
class ProjectPanelTests extends GroovyTestCase {
|
||||
|
||||
IGriffonApplication app
|
||||
|
||||
void testSomething() {
|
||||
|
||||
}
|
||||
}
|
@@ -0,0 +1,20 @@
|
||||
package pit.swing
|
||||
|
||||
import griffon.core.GriffonApplication
|
||||
import griffon.test.*
|
||||
|
||||
class NewIssueDialogTests extends GriffonUnitTestCase {
|
||||
GriffonApplication app
|
||||
|
||||
protected void setUp() {
|
||||
super.setUp()
|
||||
}
|
||||
|
||||
protected void tearDown() {
|
||||
super.tearDown()
|
||||
}
|
||||
|
||||
void testSomething() {
|
||||
|
||||
}
|
||||
}
|
20
pit-swing/test/integration/pit/swing/PITests.groovy
Normal file
20
pit-swing/test/integration/pit/swing/PITests.groovy
Normal file
@@ -0,0 +1,20 @@
|
||||
package pit.swing
|
||||
|
||||
import griffon.core.GriffonApplication
|
||||
import griffon.test.*
|
||||
|
||||
class PITests extends GriffonUnitTestCase {
|
||||
GriffonApplication app
|
||||
|
||||
protected void setUp() {
|
||||
super.setUp()
|
||||
}
|
||||
|
||||
protected void tearDown() {
|
||||
super.tearDown()
|
||||
}
|
||||
|
||||
void testSomething() {
|
||||
|
||||
}
|
||||
}
|
20
pit-swing/test/integration/pit/swing/PitSwingTests.groovy
Normal file
20
pit-swing/test/integration/pit/swing/PitSwingTests.groovy
Normal file
@@ -0,0 +1,20 @@
|
||||
package pit.swing
|
||||
|
||||
import griffon.core.GriffonApplication
|
||||
import griffon.test.*
|
||||
|
||||
class PitSwingTests extends GriffonUnitTestCase {
|
||||
GriffonApplication app
|
||||
|
||||
protected void setUp() {
|
||||
super.setUp()
|
||||
}
|
||||
|
||||
protected void tearDown() {
|
||||
super.tearDown()
|
||||
}
|
||||
|
||||
void testSomething() {
|
||||
|
||||
}
|
||||
}
|
@@ -0,0 +1,20 @@
|
||||
package pit.swing
|
||||
|
||||
import griffon.core.GriffonApplication
|
||||
import griffon.test.*
|
||||
|
||||
class ProjectPanelTests extends GriffonUnitTestCase {
|
||||
GriffonApplication app
|
||||
|
||||
protected void setUp() {
|
||||
super.setUp()
|
||||
}
|
||||
|
||||
protected void tearDown() {
|
||||
super.tearDown()
|
||||
}
|
||||
|
||||
void testSomething() {
|
||||
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user