We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2390ac3 commit 1ea4bebCopy full SHA for 1ea4beb
1 file changed
src/test/groovy/ru/endlesscode/bukkitgradle/server/ServerCoreTest.groovy
@@ -8,12 +8,9 @@ import static org.junit.Assert.assertTrue
8
9
class ServerCoreTest extends TestBase {
10
@Test
11
- void canAddTaskToProject() throws Exception {
+ void canAddTasksToProject() throws Exception {
12
+ assertTrue(project.updateServerCoreMetadata instanceof DefaultTask)
13
assertTrue(project.downloadServerCore instanceof DefaultTask)
- }
14
-
15
- @Test
16
- void testAllTasks() throws Exception {
17
- project.prepareServerCore.execute()
+ assertTrue(project.prepareServerCore instanceof DefaultTask)
18
}
19
0 commit comments