Ejemplo n.º 1
0
        public void Produce()
        {
            var tournament = new Session();

            tournament.GenerateBoards(2);
            var writer = new StringWriter();
            var report = new HandRecord()
            {
                Tournament = tournament
            };

            report.Produce(writer);
            //File.WriteAllText(@"c:\handout.html", writer.ToString(), Encoding.UTF8);
        }
Ejemplo n.º 2
0
        public void Properties()
        {
            var report = new HandRecord();

            Assert.AreEqual(3, report.Columns);
        }