public void GenerateBoard() { Mock<Grid> grid = new Mock<Grid>(); grid.SetupAllProperties(); MainGame game = new MainGame(grid.Object, 200); grid.VerifySet(x => x.Width = It.IsAny<double>()); grid.VerifySet(x => x.Height = It.IsAny<double>()); }
private void Window_Loaded(object sender, RoutedEventArgs e) { timer = new System.Timers.Timer(); synchronizationContext = SynchronizationContext.Current; timer.Interval = 1000; timer.Elapsed += Timer_Elapsed; timer.Enabled = true; Game = new MainGame(CellHolder, ActualHeight - 41); Twitch = new MainTwitch(Game, new Voting(Game, votingPanel, countdown)); }
public MainTwitch(MainGame game, Voting voting) { this.game = game; this.voting = voting; AddActions(); IrcClient client = new IrcClient(Host, new IrcUser(Username, Username, Password)); client.ConnectionComplete += (s, e) => client.JoinChannel(Channel); client.PrivateMessageRecieved += (s, e) => { ParseMessage(e.PrivateMessage.User.RealName, e.PrivateMessage.Message); }; client.ConnectAsync(); }