public void TestMondlandungsSimulation()
        {
            ArrayList kommandos = new ArrayList(10);
            for (int i = 0; i < 10; i++)
                kommandos.Add(new IntGene(1));

            MondlandungsSimulation sim = new MondlandungsSimulation(100, 100, 1, true);
            Assert.AreEqual(10, sim.TestComputeFitness(kommandos));
        }