mirror of
https://github.com/corda/corda.git
synced 2025-01-08 14:03:06 +00:00
22 lines
749 B
Java
22 lines
749 B
Java
public class Strings {
|
|
private static void expect(boolean v) {
|
|
if (! v) throw new RuntimeException();
|
|
}
|
|
|
|
public static void main(String[] args) {
|
|
expect(new String(new byte[] { 99, 111, 109, 46, 101, 99, 111, 118, 97,
|
|
116, 101, 46, 110, 97, 116, 46, 98, 117,
|
|
115, 46, 83, 121, 109, 98, 111, 108 })
|
|
.equals("com.ecovate.nat.bus.Symbol"));
|
|
|
|
// We don't yet have a regex implementation, so this test will fail:
|
|
// final String months = "Jan\u00aeFeb\u00aeMar\u00ae";
|
|
// expect(months.split("\u00ae").length == 3);
|
|
|
|
StringBuilder sb = new StringBuilder();
|
|
sb.append('$');
|
|
sb.append('2');
|
|
expect(sb.substring(1).equals("2"));
|
|
}
|
|
}
|