I think the best course of action would be to define a default constructor for your class. Declaring setters/getters is also a good practice.

public class TestRun
{
private Set<Integer> set;
...