I am attempting to run my program. However, when I click run, no output window shows up. In addition, when I go to View --> Tool Windows, the Run option is disabled.
My main class just in case anyone was wondering:
import org.apache.http.impl.client.HttpClientBuilder;
import org.junit.Test;
import java.io.IOException;
import java.util.HashMap;
import java.util.Map;
import static junit.framework.TestCase.assertEquals;
public class TesterClass {
public static void main(String[] args) {
String url = "https://erikberg.com/nba/standings.json";
HttpClient client = HttpClientBuilder.create().build();
HttpGet request = new HttpGet();
request.addHeader("User-agent", "LotterySimulator/1.0 (nneeranjun@berkeley.edu)");
HttpResponse response = null;
try {
response = client.execute(request);
} catch (IOException e) {
e.printStackTrace();
}
try {
System.out.println(response.getEntity().getContent());
} catch (IOException e) {
e.printStackTrace();
}
}
}