static Scope GetInitScope() { Daisy daisy = new Daisy(); daisy.ParseFile("../../DaisyData/test_check.dai"); daisy.Initialize(); daisy.Start(); daisy.TickTime(); Assert.Greater(daisy.ScopeSize(), 3); Scope scope = daisy.GetScope(0); return(scope); }
public void ScopeSize() { Daisy daisy = GetInitDaisy(); Assert.AreEqual(4, daisy.ScopeSize()); }
public void GetScope() { Daisy daisy = GetInitDaisy(); Assert.Greater(daisy.ScopeSize(),0); Scope scope = daisy.GetScope(0); }
public uint ScopeSize() { return(_daisyEngine.ScopeSize()); }