public void GeneralRunning()
        {
            ExampleGenerator.GenerateExample(5);
            var path = "Example.txt";

            string[] data = File.ReadAllLines(path);
            Assert.IsTrue(data.Length == 5);
        }
        public void ZeroValues()
        {
            ExampleGenerator.GenerateExample(0);
            var path = "Example.txt";

            string[] data = File.ReadAllLines(path);
            Assert.IsTrue(data.Length == 0);
        }
        public void HugeValues()
        {
            var someHugeValue = 3000;

            ExampleGenerator.GenerateExample(someHugeValue);
            var path = "Example.txt";

            string[] data = File.ReadAllLines(path);
            Assert.IsTrue(data.Length == someHugeValue);
        }