import java.lang.invoke.MethodHandles;
import static org.junit.jupiter.api.Assertions.*;
import org.junit.jupiter.api.Test;
import org.junit.platform.console.ConsoleLauncher;

public class P3Tests {


// TODO: Add test methods with the @Test annotation for each role here


  public static void main(String[] args) {
    String className = MethodHandles.lookup().lookupClass().getName();
    String classPath = System.getProperty("java.class.path").replace(" ", "\\ ");
    String[] arguments = new String[] {
      "-cp",
      classPath,
      "--include-classname=.*",
      "--select-class=" + className };
    ConsoleLauncher.main(arguments);
  }

}
