Esempio n. 1
0
 public void SetActiveTest()
 {
     SpriteFont font = null; // TODO: Initialize to an appropriate value
     string text = string.Empty; // TODO: Initialize to an appropriate value
     Vector2 position = new Vector2(); // TODO: Initialize to an appropriate value
     Color color = new Color(); // TODO: Initialize to an appropriate value
     TextAlign align = new TextAlign(); // TODO: Initialize to an appropriate value
     TextDrawer target = new TextDrawer(font, text, position, color, align); // TODO: Initialize to an appropriate value
     bool active = false; // TODO: Initialize to an appropriate value
     target.SetActive(active);
     Assert.Inconclusive("A method that does not return a value cannot be verified.");
 }
Esempio n. 2
0
 internal void SetActive(bool active)
 {
     this.active = active;
     tdI.SetActive(active);
 }