Exemplo n.º 1
0
 public void DrawTest()
 {
     UIComponent target = new UIComponent(); // TODO: Initialize to an appropriate value
     SpriteBatch sb = null; // TODO: Initialize to an appropriate value
     target.Draw(sb);
     Assert.Inconclusive("A method that does not return a value cannot be verified.");
 }
Exemplo n.º 2
0
 public void BoundBoxTest()
 {
     UIComponent target = new UIComponent(); // TODO: Initialize to an appropriate value
     Rectangle actual;
     actual = target.BoundBox;
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
Exemplo n.º 3
0
 public void OnMouseOffTest()
 {
     UIComponent target = new UIComponent(); // TODO: Initialize to an appropriate value
     target.OnMouseOff();
     Assert.Inconclusive("A method that does not return a value cannot be verified.");
 }
Exemplo n.º 4
0
 public void UpdateTest()
 {
     UIComponent target = new UIComponent(); // TODO: Initialize to an appropriate value
     GameTime theTime = null; // TODO: Initialize to an appropriate value
     target.Update(theTime);
     Assert.Inconclusive("A method that does not return a value cannot be verified.");
 }
Exemplo n.º 5
0
 public void UIC_InitializeTest()
 {
     UIComponent target = new UIComponent(); // TODO: Initialize to an appropriate value
     bool bind = false; // TODO: Initialize to an appropriate value
     target.UIC_Initialize(bind);
     Assert.Inconclusive("A method that does not return a value cannot be verified.");
 }
Exemplo n.º 6
0
 public void UIComponentConstructorTest()
 {
     UIComponent target = new UIComponent();
     Assert.Inconclusive("TODO: Implement code to verify target");
 }
Exemplo n.º 7
0
 public void SetOnMouseOverTest()
 {
     UIComponent target = new UIComponent(); // TODO: Initialize to an appropriate value
     Action a = null; // TODO: Initialize to an appropriate value
     target.SetOnMouseOver(a);
     Assert.Inconclusive("A method that does not return a value cannot be verified.");
 }