public void TemplateField_ExtractValuesFromCell()
        {
            TemplateField        field       = new TemplateField();
            OrderedDictionary    dictionrary = new OrderedDictionary();
            DataControlFieldCell cell        = new DataControlFieldCell(null);

            field.ExtractValuesFromCell(dictionrary, cell, DataControlRowState.Normal, true);
            Assert.AreEqual(0, dictionrary.Count, "ExtractValuesFromCellNoTemplates");
            // This is testing only base functionality and flow with no exceptions
            // The rest functionality will tested on integration test
        }