Skip to content

Commit c1a53d9

Browse files
committed
Add new Consts unit
Created new Consts unit Added to tests DUnitX project. No tests are required for this unit, but the unit will be eventually be required by later units that will themselves be tested.
1 parent c597831 commit c1a53d9

File tree

3 files changed

+13
-1
lines changed

3 files changed

+13
-1
lines changed

cupola/src/CSLE.Consts.pas

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
unit CSLE.Consts;
2+
3+
interface
4+
5+
const
6+
DOUBLEQUOTE = '"'; // double quote character
7+
8+
implementation
9+
10+
end.

cupola/tests/CodeSnip.Cupola.Tests.dpr

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,8 @@ uses
4040
CSLE.Utils.URI in '..\src\CSLE.Utils.URI.pas',
4141
Test.Utils.URI in 'Test.Utils.URI.pas',
4242
CSLE.Snippets.TestInfo in '..\src\CSLE.Snippets.TestInfo.pas',
43-
Test.Snippets.TestInfo in 'Test.Snippets.TestInfo.pas';
43+
Test.Snippets.TestInfo in 'Test.Snippets.TestInfo.pas',
44+
CSLE.Consts in '..\src\CSLE.Consts.pas';
4445

4546
{$IFNDEF TESTINSIGHT}
4647
var

cupola/tests/CodeSnip.Cupola.Tests.dproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,7 @@
9999
<DCCReference Include="Test.Utils.URI.pas"/>
100100
<DCCReference Include="..\src\CSLE.Snippets.TestInfo.pas"/>
101101
<DCCReference Include="Test.Snippets.TestInfo.pas"/>
102+
<DCCReference Include="..\src\CSLE.Consts.pas"/>
102103
<BuildConfiguration Include="Base">
103104
<Key>Base</Key>
104105
</BuildConfiguration>

0 commit comments

Comments
 (0)