Exemplo n.º 1
0
        static void Main(string[] args)
        {
            var map = new KMap(3, new HashSet <long>()
            {
                4, 5, 6
            }, new HashSet <long>()
            {
            });

            map.PrintCoverages(true);
            map.PrintTestResults();

            Console.ReadKey();
        }