hyperskill / hs-test

A framework that simplifies testing educational projects for Hyperskill. It is built on top of JUnit.
31 stars 10 forks source link

Don't fallback to default (empty) package if the specified package doesn't exist. #125

Open aaaaaa2493 opened 3 years ago

aaaaaa2493 commented 3 years ago

Example:

TestedProgram server1 = new TestedProgram("chat.server");
TestedProgram client1 = new TestedProgram("chat.client");

Will result in executing the same class if the user haven't created chat/server and chat/client packages and created just single main class because they both will fallback to the default package.