Test Case Title in TL 1.9.2
Posted: Mon Nov 19, 2012 11:57 pm
Does anyone know the option to change the test case title length in 1.9? I see a reference for it in 1.8 but the fields have changed. First you need to allow for input to be higher than 100, but there seems to be a second field for when it saves. The title truncates to 100 characters even though mssql has been updated to allow up to 256. Any thoughts?
Reference for 1.8: http://www.teamst.org/forum/viewtopic.php?f=9&t=3093
To allow 255 characters to be typed in to the UI:
Edit: input_dimensions.conf
[tcNew]
TESTCASE_NAME_SIZE=50
TESTCASE_NAME_MAXLEN=255
To allow 255 characters to be stored into mssql:
ALTER TABLE [dbo].nodes_hierarchy
ALTER COLUMN name [nvarchar](255)
Reference for 1.8: http://www.teamst.org/forum/viewtopic.php?f=9&t=3093
To allow 255 characters to be typed in to the UI:
Edit: input_dimensions.conf
[tcNew]
TESTCASE_NAME_SIZE=50
TESTCASE_NAME_MAXLEN=255
To allow 255 characters to be stored into mssql:
ALTER TABLE [dbo].nodes_hierarchy
ALTER COLUMN name [nvarchar](255)