public void TestTextBoxIsOfFullLengthInspector()
        {
            var textBoxIsOfFullLengthInspector = new TextBoxIsOfFullLengthInspector("text", 0);
            var target = new PrivateObject(textBoxIsOfFullLengthInspector);

            Assert.AreEqual(( string )target.GetFieldOrProperty(MEMBER_VARIABLE_NAME_TEXT), "text");
            Assert.AreEqual(( int )target.GetFieldOrProperty(MEMBER_VARIABLE_NAME_MAX_TEXT_LENGTH), 0);
        }
 public void Initialize()
 {
     _textBoxIsOfFullLengthInspector = new TextBoxIsOfFullLengthInspector(TestDefinition.DUMP_STRING, TestDefinition.DUMP_INTEGER);
     _target = new PrivateObject(_textBoxIsOfFullLengthInspector);
 }