mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-08-06 12:33:03 +00:00
EssentialsUpdate WIP
This commit is contained in:
parent
9ec398b39b
commit
860d446d28
169 changed files with 13835 additions and 1 deletions
|
@ -0,0 +1,27 @@
|
|||
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);
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue