diff options
author | 2024-08-02 17:16:05 +0200 | |
---|---|---|
committer | 2024-08-02 17:16:05 +0200 | |
commit | 7f2bb3643dd8781be4b5c1d3364f591e572c82e7 (patch) | |
tree | fddf6032ce6041fbadbc533bc6ebba5b3366ec83 /test | |
parent | 81c395272089cd86e6e2e4bda9789e02141494f3 (diff) | |
download | properties-7f2bb3643dd8781be4b5c1d3364f591e572c82e7.tar.gz properties-7f2bb3643dd8781be4b5c1d3364f591e572c82e7.zip |
Move test.properties in test directory
Diffstat (limited to 'test')
-rw-r--r-- | test/test.properties | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/test/test.properties b/test/test.properties new file mode 100644 index 0000000..e34ebc9 --- /dev/null +++ b/test/test.properties @@ -0,0 +1,33 @@ +# +# This is a comemnt and will be ignored +# Follow an empty line + +test.key=test.value + +# A key can start with spaces or tabs: + keywithspaces=valueOfAKeyWithSpaces + keywithtabs=valueOfAKeyWithTabs + +# A key can have no value +keywithnovalue= + + # Comment starting with a tab + # Comment starting with spaces + +# Following a line with a tab + + +# Following a line with spaces + +# A property with a value with spaces and tabs +key1=A value with spaces and tabs + +# A key followed from a space +key2 = +# A key followed from a tab +key2.1 = + +# A value beginning with spaces +key3 = A value +# A value beginning with tabs +key3.1 = A value |