diff options
Diffstat (limited to 'other/java/s3copier/src/test')
| -rw-r--r-- | other/java/s3copier/src/test/java/com/seaweedfs/s3/PutObjectTest.java | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/other/java/s3copier/src/test/java/com/seaweedfs/s3/PutObjectTest.java b/other/java/s3copier/src/test/java/com/seaweedfs/s3/PutObjectTest.java new file mode 100644 index 000000000..0404dab60 --- /dev/null +++ b/other/java/s3copier/src/test/java/com/seaweedfs/s3/PutObjectTest.java @@ -0,0 +1,38 @@ +package com.seaweedfs.s3; + +import junit.framework.Test; +import junit.framework.TestCase; +import junit.framework.TestSuite; + +/** + * Unit test for simple App. + */ +public class PutObjectTest + extends TestCase +{ + /** + * Create the test case + * + * @param testName name of the test case + */ + public PutObjectTest(String testName ) + { + super( testName ); + } + + /** + * @return the suite of tests being tested + */ + public static Test suite() + { + return new TestSuite( PutObjectTest.class ); + } + + /** + * Rigourous Test :-) + */ + public void testApp() + { + assertTrue( true ); + } +} |
