Exemplo n.º 1
0
        public void StoppingADreamMarksItAsInactive()
        {
            nmzSession.StartNewDream();
            nmzSession.StopCurrentDream();

            Assert.That(!nmzSession.CurrentDream.IsActive());
        }
Exemplo n.º 2
0
 private void stopDream_Click(object sender, EventArgs e)
 {
     nmzSession.StopCurrentDream();
     label2.Text = "No Dream";
 }