static void Main(string[] args) { TestClay t1 = new TestClay(); t1.Run(args); TestResponsiveClay t2 = new TestResponsiveClay(); t2.Run(args); TestConduit t3 = new TestConduit(); t3.Run(args); var t4 = new TestSClay(); t4.Run(args); }
static void Main(string[] args) { MosyreTest t = new TestRClay(); t.Start(args); t = new TestConduit(); t.Start(args); t = new TestConnection(); t.Start(args); t = new TestMultiConnections(); t.Start(args); t = new TestTwoLayerConnection(); t.Start(args); t = new TestConduitConnection(); t.Start(args); t = new TestSClay(); t.Start(args); }