This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.numberstest; | |
| import org.junit.jupiter.api.Test; | |
| import java.util.Arrays; | |
| public class NumbersTest { | |
| @Test | |
| void n() { | |
| printNumbersBuildOfDigitsLessThan(4); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class Base { | |
| public void base() { | |
| System.out.println("Base.base()"); | |
| } | |
| public void foo() { | |
| System.out.println("Base.foo()"); | |
| } | |
| } |
OlderNewer