1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
unit strtestcaseopts;
{$mode objfpc}{$H+}
interface
resourcestring
//visual components captions
sfrmTest = 'TestCase Options';
sgrpNames = 'Names';
slblDefault = 'Default Test Name';
sgrpFixture = 'Fixture';
schkSetup = 'Create Setup Method';
schkTear = 'Create TearDown method';
sbtnCreate = 'Create unit';
sFPCUnTestApp = 'FPCUnit Test Application';
sFPCUnTestAppDesc = 'An application to run FPCUnit test cases.';
sFPCUnTestCase = 'FPCUnit Test Case';
sFPCUnTestCaseDesc = 'A unit containing a FPCUnit Test Case.';
sWriteYourOwnTest = 'Write your own test';
sFPCUnConsoleTestApp = 'FPCUnit Console Test Application';
sFPCUnConsoleTestDesc = 'An application to run FPCUnit test cases in console mode.';
implementation
end.
|