File: strtestcaseopts.pas

package info (click to toggle)
lazarus 4.0%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 275,760 kB
  • sloc: pascal: 2,341,904; xml: 509,420; makefile: 348,726; cpp: 93,608; sh: 3,387; java: 609; perl: 297; sql: 222; ansic: 137
file content (84 lines) | stat: -rw-r--r-- 2,867 bytes parent folder | download
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
unit strtestcaseopts;

{$mode objfpc}{$H+}

interface

Const
  STestResult = '$Result';
  STestPath = '$Path';

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';

  sNewFPCUnitProgramToR = 'New FPCUnit console testrunner program';

  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.';

  sRunAllTests = '&Run all tests by default';
  sUseTextInsight = 'Use &Test Insight to communicate results to the IDE';
  sCreateFirstTestCase = '&Create first test case';
  sDefaultOutputFormat = 'Default output &format';
  sDefault = 'Default';
  sXML = 'XML';
  sPlainText = 'Plain text';
  sPlainTextWithoutTimi = 'Plain text without timings';
  sLaTeX = 'LaTeX';

  rsTestInsightTitle = 'Test Insight';
  rsServerPort = 'Server port';
  rsServerPath = 'Server path';
  rsAutomaticallyFetchTestListOnOpen = 'Automatically fetch test list on open';

  rsAllTests = 'All Tests';
  rsRuns = 'Runs: %s/%s';
  rsErrors = '%s    Errors: %s';
  rsFailures = '%s     Failures: %s';
  rsMessage = 'Message: %s';
  rsException = 'Exception: %s';
  rsExceptionMes = 'Exception message: %s';
  rsExceptionCla = 'Exception class: %s';
  // Visual components captions
  sfrmGUITest = 'FPCUnit - run unit test';
  sactRunAction = '&Run all';
  sactRunActionH = 'Run all checked tests';
  sactCloseForm = 'Quit';
  sactCloseFormH = 'Quit testing';
  sactCheckCurrentSuite = 'Select current suite';
  sactUncheckCurrentSuite = 'Deselect current suite';
  sactCheckAll = 'Select all tests';
  sactUncheckAll = 'Deselect all tests';
  sactRunHighlightedTest = 'Run selected';
  sactRunHighlightedTestH = 'Run selected test';
  smiActions = 'Actions';
  smiTestTree = 'Test tree';
  smiEdit = 'Edit';
  smiCollapseNodes = 'Collapse Nodes';
  smiExpandNodes = 'Expand Nodes';
  rsNextError = 'Next error';
  rsPreviousError = 'Previous error';
  sactCopyAllToClipboard = 'Copy text to clipboard';
  sactCopyMessageToClipboard = 'Copy message to clipboard';
  sactCopyAllToClipboardH = 'Copy the entire text to clipboard';
  SNoExecutableAvailable = 'Test executable is not available: "%s"';
  SNoTestProjectConfigured = 'No test project configured.';
  SNavigationNotAvailable = 'Source navigation not available.';
  rsCouldNotDete = 'Could not determine class and method from test path "%s"';

implementation

end.