Program.cs

20 lines | 389 B Blame History Raw Download
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

using YED.Console.Test;

namespace YED
{
    class Program
    {        
        static void Main(string[] args)
        {
            new Test1_ReadWrite().Test(true, true);
            new Test2_CreateGraph_and_ExportToYed().Test(true);            
        }
    }
}