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 GetScope() { Daisy daisy = GetInitDaisy(); Assert.Greater(daisy.ScopeSize(),0); Scope scope = daisy.GetScope(0); }
public Scope GetScope(int index) { return(_daisyEngine.GetScope(index)); }