summaryrefslogtreecommitdiffstats
path: root/EssentialsUpdate/test/com/earth2me/essentials/update/UploadTest.java
diff options
context:
space:
mode:
authorKHobbits <rob@khobbits.co.uk>2012-08-18 15:51:55 +0100
committerKHobbits <rob@khobbits.co.uk>2012-08-18 15:51:55 +0100
commite42f7e4ffa35f5772abb7a467ab18058854c1583 (patch)
treefff3c45269df14007872ddb63023ad44982a7a9d /EssentialsUpdate/test/com/earth2me/essentials/update/UploadTest.java
parent8a9353fd098fdc123adc9f014a5a52e9a829a22d (diff)
downloadEssentials-e42f7e4ffa35f5772abb7a467ab18058854c1583.tar
Essentials-e42f7e4ffa35f5772abb7a467ab18058854c1583.tar.gz
Essentials-e42f7e4ffa35f5772abb7a467ab18058854c1583.tar.lz
Essentials-e42f7e4ffa35f5772abb7a467ab18058854c1583.tar.xz
Essentials-e42f7e4ffa35f5772abb7a467ab18058854c1583.zip
Removing EssentialsUpdate from 2.9 branch.
Development may be continued in 3.x branch.
Diffstat (limited to 'EssentialsUpdate/test/com/earth2me/essentials/update/UploadTest.java')
-rw-r--r--EssentialsUpdate/test/com/earth2me/essentials/update/UploadTest.java27
1 files changed, 0 insertions, 27 deletions
diff --git a/EssentialsUpdate/test/com/earth2me/essentials/update/UploadTest.java b/EssentialsUpdate/test/com/earth2me/essentials/update/UploadTest.java
deleted file mode 100644
index a51f03bd7..000000000
--- a/EssentialsUpdate/test/com/earth2me/essentials/update/UploadTest.java
+++ /dev/null
@@ -1,27 +0,0 @@
-package com.earth2me.essentials.update;
-
-import java.io.IOException;
-import java.util.logging.Level;
-import java.util.logging.Logger;
-import junit.framework.TestCase;
-import org.junit.Test;
-
-
-public class UploadTest extends TestCase
-{
- @Test
- public void testPastieUpload()
- {
- try
- {
- final PastieUpload pastie = new PastieUpload();
- assertNotNull(pastie);
- //final String url = pastie.send("test");
- //System.out.println(url);
- }
- catch (IOException ex)
- {
- Logger.getLogger(UploadTest.class.getName()).log(Level.SEVERE, null, ex);
- }
- }
-}