mirror of
https://github.com/essentials/Essentials.git
synced 2025-08-05 14:18:21 +02:00
.com -> .net in test package of Update
This commit is contained in:
27
EssentialsUpdate/test/net/ess3/update/UploadTest.java
Normal file
27
EssentialsUpdate/test/net/ess3/update/UploadTest.java
Normal file
@@ -0,0 +1,27 @@
|
||||
package net.ess3.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);
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user