/** This method performs the operations necessary to run the test. */
 @BeforeClass
 public final void setUp() {
   DALTools.startConnection(TestsConstants.CONNECT_DB_STRING);
   tournamentsData = SetPreconditions.forValidationTournamentFieldsTest();
   validTournament = TournamentTestObjects.getValidTournament();
   TournamentRepository.insertTournament(validTournament);
   WebDriverUtils.load(TestsConstants.HOME_PAGE);
   homePage = new HomePage();
   specification = Specification.get();
 }