You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Readme.txt 209B

12345678910111213141516
  1. This directory contains files used by the unit tests.
  2. empty.jar:
  3. An empty, but valid, jar file.
  4. simple.jar:
  5. Contains a single Java class
  6. ```
  7. package com.test;
  8. public class Test {
  9. public Test() {
  10. }
  11. }
  12. ```