Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
e2e53f2
Convert 'UTSettings.kt' into '.utbot/settings.properties'
Vassiliy-Kudryashov Nov 17, 2022
0fc356d
Parsing UtSettings.kt line by line to get name, type, possible values…
Vassiliy-Kudryashov Nov 17, 2022
e397cda
Misprint
Vassiliy-Kudryashov Nov 17, 2022
bfda1de
Grade task "generateConfigTemplate"
Vassiliy-Kudryashov Nov 18, 2022
5e567df
Add TODOs for myself
Vassiliy-Kudryashov Nov 18, 2022
e5b879c
Implementation of added TODOs
Vassiliy-Kudryashov Nov 20, 2022
8a39fc2
Compact one-line documentation in output file for enum values
Vassiliy-Kudryashov Nov 21, 2022
02cc183
Add Apache 2.0 license to settings.properties output and tune comment…
Vassiliy-Kudryashov Nov 22, 2022
b2a4581
Add generated template to keep is in repository as well
Vassiliy-Kudryashov Nov 22, 2022
52c60b7
Add template generation to gradle build process
Vassiliy-Kudryashov Nov 23, 2022
bc40dbf
Get rid of unused property timeslotForOneToplevelMethodTraversalMs (W…
Vassiliy-Kudryashov Nov 24, 2022
8ab1578
Add AbstractSettings.areCustomized() ability to tell template from us…
Vassiliy-Kudryashov Nov 24, 2022
7cc19c0
Fix misprints in Apache license text.
Vassiliy-Kudryashov Nov 24, 2022
5c83685
Merge branch 'main' into Vassiliy-Kudryashov/experiments
Vassiliy-Kudryashov Nov 25, 2022
2b9373d
Merge branch 'main' into Vassiliy-Kudryashov/experiments
Vassiliy-Kudryashov Nov 25, 2022
aee42d6
Merge branch 'main' into Vassiliy-Kudryashov/experiments
Vassiliy-Kudryashov Nov 28, 2022
5c1328f
Fix an issue with always-default settings state.
Vassiliy-Kudryashov Dec 2, 2022
270aa3c
Fix a misprint in UtSettings property name "treatAssertAsErrorSuite"
Vassiliy-Kudryashov Dec 2, 2022
bd6dde8
Merge branch 'main' into Vassiliy-Kudryashov/experiments
Vassiliy-Kudryashov Dec 2, 2022
b6e4ea7
Fix a misprint in UtSettings property name "treatAssertAsErrorSuite"
Vassiliy-Kudryashov Dec 2, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix misprints in Apache license text.
Make all properties commented to be free switch our hardcoded defaults later if any.
  • Loading branch information
Vassiliy-Kudryashov committed Nov 24, 2022
commit 7cc19c0e1369893c109f330412dad04e803ae98d
6 changes: 3 additions & 3 deletions buildSrc/src/main/java/SettingsTemplateHelper.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@ public class SettingsTemplateHelper {
private static final String[] apacheLines =
("Copyright (c) " + new SimpleDateFormat("yyyy").format(System.currentTimeMillis()) + " The UnitTestBot Authors\n" +
"\n" +
"Licensed under the Apache License, Version 2.0 (the \\License\\);\n" +
"Licensed under the Apache License, Version 2.0 (the \"License\");\n" +
"you may not use this file except in compliance with the License.\n" +
"You may obtain a copy of the License at\n" +
"\n" +
" http://www.apache.org/licenses/LICENSE-2.0\n" +
"\n" +
"Unless required by applicable law or agreed to in writing, software\n" +
"distributed under the License is distributed on an \\AS IS\\ BASIS,\n" +
"distributed under the License is distributed on an \"AS IS\" BASIS,\n" +
"WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n" +
"See the License for the specific language governing permissions and\n" +
"limitations under the License.").split("\n");
Expand Down Expand Up @@ -165,7 +165,7 @@ public boolean test(String s) {
writer.println("#");
writer.println("# Default value is [" + model.defaultValue + "]");
}
writer.println(model.key + "=" + model.defaultValue);
writer.println("#" + model.key + "=" + model.defaultValue);
}
writer.flush();
writer.close();
Expand Down