public void Run()
        {
            Console.SetWindowSize(120, 60);
            Console.SetBufferSize(120, 600);

            var loader = new WorldLoader();
            world = loader.LoadWorld("Data.xlsx");

            var singleMatchTests = new SingleMatchTests(world);
            singleMatchTests.Perform();
            Console.ReadLine();

            var multipleMatchesTests = new MultipleMatchesTests(world);
            multipleMatchesTests.Perform(1000);
            Console.ReadLine();
        }
 public SingleMatchTests(World world)
 {
     teamConverter = new TeamConverter(world);
 }
 public TeamConverter(World world)
 {
     this.world = world;
 }
 public MultipleMatchesTests(World world)
 {
     teamConverter = new TeamConverter(world);
 }