diff options
| author | Chris Lu <chris.lu@gmail.com> | 2018-09-02 14:19:24 -0700 |
|---|---|---|
| committer | Chris Lu <chris.lu@gmail.com> | 2018-09-02 14:19:24 -0700 |
| commit | 73f331df84d2b2ff1fff8cb87eae1edfbe983c2d (patch) | |
| tree | d411df05934446da3e250d68d4216833705430aa /other/java/s3copy/copier/src/test | |
| parent | 76cbe8bf3371fbdbb65cf13fe0d767164b53b151 (diff) | |
| download | seaweedfs-73f331df84d2b2ff1fff8cb87eae1edfbe983c2d.tar.xz seaweedfs-73f331df84d2b2ff1fff8cb87eae1edfbe983c2d.zip | |
add java example of copying to weed s3 end point
Diffstat (limited to 'other/java/s3copy/copier/src/test')
| -rw-r--r-- | other/java/s3copy/copier/src/test/java/com/seaweedfs/s3/S3CopyTest.java | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/other/java/s3copy/copier/src/test/java/com/seaweedfs/s3/S3CopyTest.java b/other/java/s3copy/copier/src/test/java/com/seaweedfs/s3/S3CopyTest.java new file mode 100644 index 000000000..2bc89b87d --- /dev/null +++ b/other/java/s3copy/copier/src/test/java/com/seaweedfs/s3/S3CopyTest.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 S3CopyTest + extends TestCase +{ + /** + * Create the test case + * + * @param testName name of the test case + */ + public S3CopyTest(String testName ) + { + super( testName ); + } + + /** + * @return the suite of tests being tested + */ + public static Test suite() + { + return new TestSuite( S3CopyTest.class ); + } + + /** + * Rigourous Test :-) + */ + public void testApp() + { + assertTrue( true ); + } +} |
