diff options
Diffstat (limited to 'test')
| -rw-r--r-- | test/cuchaz/enigma/inputs/translation/F_ObjectMethods.java | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/test/cuchaz/enigma/inputs/translation/F_ObjectMethods.java b/test/cuchaz/enigma/inputs/translation/F_ObjectMethods.java new file mode 100644 index 00000000..4e091797 --- /dev/null +++ b/test/cuchaz/enigma/inputs/translation/F_ObjectMethods.java | |||
| @@ -0,0 +1,19 @@ | |||
| 1 | package cuchaz.enigma.inputs.translation; | ||
| 2 | |||
| 3 | public class F_ObjectMethods { | ||
| 4 | |||
| 5 | public void callEmAll() | ||
| 6 | throws Throwable { | ||
| 7 | clone(); | ||
| 8 | equals(this); | ||
| 9 | finalize(); | ||
| 10 | getClass(); | ||
| 11 | hashCode(); | ||
| 12 | notify(); | ||
| 13 | notifyAll(); | ||
| 14 | toString(); | ||
| 15 | wait(); | ||
| 16 | wait(0); | ||
| 17 | wait(0, 0); | ||
| 18 | } | ||
| 19 | } | ||