You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
102 lines
2.7 KiB
102 lines
2.7 KiB
// <file> |
|
// <copyright see="prj:///doc/copyright.txt"/> |
|
// <license see="prj:///doc/license.txt"/> |
|
// <owner name="Matthew Ward" email="mrward@users.sourceforge.net"/> |
|
// <version>$Revision$</version> |
|
// </file> |
|
|
|
using System; |
|
using System.Collections.Generic; |
|
using System.ComponentModel; |
|
using System.Drawing; |
|
using System.IO; |
|
using System.Windows.Forms; |
|
|
|
using ICSharpCode.PythonBinding; |
|
using NUnit.Framework; |
|
using PythonBinding.Tests.Utils; |
|
|
|
namespace PythonBinding.Tests.Designer |
|
{ |
|
[TestFixture] |
|
public class LoadTextBoxTestFixture : LoadFormTestFixtureBase |
|
{ |
|
public override string PythonCode { |
|
get { |
|
return "class MainForm(System.Windows.Forms.Form):\r\n" + |
|
" def InitializeComponent(self):\r\n" + |
|
" self._textBox1 = System.Windows.Forms.TextBox()\r\n" + |
|
" self.SuspendLayout()\r\n" + |
|
" # \r\n" + |
|
" # textBox1\r\n" + |
|
" # \r\n" + |
|
" self._textBox1.Name = \"textBoxName\"\r\n" + |
|
" self._textBox1.Location = System.Drawing.Point(108, 120)\r\n" + |
|
" # \r\n" + |
|
" # form1\r\n" + |
|
" # \r\n" + |
|
" self.Location = System.Drawing.Point(10, 20)\r\n" + |
|
" self.Name = \"form1\"\r\n" + |
|
" self.Controls.Add(self._textBox1)\r\n" + |
|
" self.ResumeLayout(False)\r\n"; |
|
} |
|
} |
|
|
|
public TextBox TextBox { |
|
get { return Form.Controls[0] as TextBox; } |
|
} |
|
|
|
[Test] |
|
public void AddedComponentsContainsTextBox() |
|
{ |
|
CreatedInstance instance = ComponentCreator.GetCreatedInstance(typeof(TextBox)); |
|
|
|
AddedComponent component = new AddedComponent(instance.Object as IComponent, "textBox1"); |
|
Assert.Contains(component, ComponentCreator.AddedComponents); |
|
} |
|
|
|
[Test] |
|
public void TextBoxInstanceCreated() |
|
{ |
|
CreatedInstance instance = new CreatedInstance(typeof(TextBox), new List<object>(), "textBox1", false); |
|
Assert.Contains(instance, ComponentCreator.CreatedInstances); |
|
} |
|
|
|
[Test] |
|
public void TextBoxAddedToForm() |
|
{ |
|
Assert.IsNotNull(TextBox); |
|
} |
|
|
|
[Test] |
|
public void TextBoxObjectMatchesObjectAddedToComponentCreator() |
|
{ |
|
CreatedInstance instance = ComponentCreator.GetCreatedInstance(typeof(TextBox)); |
|
Assert.AreSame(TextBox, instance.Object as TextBox); |
|
} |
|
|
|
[Test] |
|
public void TextBoxName() |
|
{ |
|
Assert.AreEqual("textBoxName", TextBox.Name); |
|
} |
|
|
|
[Test] |
|
public void TextBoxLocation() |
|
{ |
|
Assert.AreEqual(new Point(108, 120), TextBox.Location); |
|
} |
|
|
|
[Test] |
|
public void CreatedInstancesDoesNotIncludeLocation() |
|
{ |
|
Assert.IsNull(ComponentCreator.GetCreatedInstance("Location")); |
|
} |
|
|
|
[Test] |
|
public void FormLocation() |
|
{ |
|
Assert.AreEqual(new Point(10, 20), Form.Location); |
|
} |
|
} |
|
}
|
|
|