Skip to content

Instantly share code, notes, and snippets.

View ovshyian's full-sized avatar

Oleksandr Shyian ovshyian

View GitHub Profile
@ovshyian
ovshyian / jr_phoneNumbers_tests.java
Created June 19, 2022 16:43
Tests for the JavaRush task, Multithreading section, Level 2, "Checking the phone number".
public static void main(String[] args) {
Map<String, Boolean> tests = new HashMap<>();
// empty string and null
tests.put("", false);
tests.put(null, false);
// characters
tests.put("characters", false);
tests.put("+abc123456789012", false);
tests.put("050xxx4567", false);
// without '+', less than 10 digits