public void StoppingADreamMarksItAsInactive()
        {
            nmzSession.StartNewDream();
            nmzSession.StopCurrentDream();

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