Пример #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.");
 }
Пример #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.");
 }
Пример #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.");
 }
Пример #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.");
 }
Пример #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.");
 }
Пример #6
0
 public void UIComponentConstructorTest()
 {
     UIComponent target = new UIComponent();
     Assert.Inconclusive("TODO: Implement code to verify target");
 }
Пример #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.");
 }