From 17d85061d971d087c1b8b6c3e1d146d0229d2677 Mon Sep 17 00:00:00 2001 From: Alena Lisevych <37301492+alisevych@users.noreply.github.com> Date: Thu, 16 Jun 2022 18:57:53 +0300 Subject: [PATCH 1/2] Update Manual testing checklist Some editor corrections --- .github/ISSUE_TEMPLATE/test_request.md | 32 ++++++++++++++------------ 1 file changed, 17 insertions(+), 15 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/test_request.md b/.github/ISSUE_TEMPLATE/test_request.md index 2a919e0bc3..95341bc695 100644 --- a/.github/ISSUE_TEMPLATE/test_request.md +++ b/.github/ISSUE_TEMPLATE/test_request.md @@ -1,5 +1,5 @@ --- -name: Manual testing plan +name: Manual testing checklist about: Checklist of testing process title: '' labels: '' @@ -9,47 +9,49 @@ assignees: '' **Initial set-up** -- [ ] Check that the IntelliJ Idea UTBot plugin can be successfully installed +*Check that the IntelliJ Idea UTBot plugin can be successfully installed* + - [ ] Choose appropriate workflow from the next list (by default, use the latest one) https://github.com/UnitTestBot/UTBotJava/actions/workflows/publish-plugin-and-cli.yml - [ ] Open IntelliJ IDE -- [ ] Remove the latest version of the UTBot plugin -- [ ] Clone or reuse UTBot workspace (https://github.com/UnitTestBot/UTBotJava.git) -- [ ] Open the workspace in the IDE with the installed plugin -- [ ] Build workspace (Instruction is needed) -- [ ] Go through manual scenarios +- [ ] Remove previously installed UTBot plugin +- [ ] Clone or reuse UTBot project (https://github.com/UnitTestBot/UTBotJava.git) +- [ ] Open the project in the IDE +- [ ] Install the downloaded plugin +- [ ] Build the project (Instruction is needed) +*Go through manual scenarios* **Manual scenario #1** - [ ] Use default plugin settings - [ ] Open the utbot-sample/src/main/java/org/utbot/examples/algorithms/ArraysQuickSort.java file -- [ ] Try to generate tests for the class +- [ ] Generate tests for the class - [ ] Remove results -- [ ] Try to generate tests for the methods +- [ ] Generate tests for the methods **Manual scenario #2** - [ ] Use default plugin settings - [ ] Open the utbot-sample/src/main/java/org/utbot/examples/mock/CommonMocksExample.java file -- [ ] Try to generate tests with all available (mocking) options +- [ ] Generate tests with all available (mocking) options **Manual scenario #3** - [ ] Create a new Gradle project - [ ] Add a simple java file to test -- [ ] Try to generate a test with a new test root +- [ ] Generate a test with a new test root **Manual scenario #4** -- [ ] Create a new Idea project +- [ ] Create a new Maven project - [ ] Add a simple java file to test -- [ ] Try to generate a test with a new test root +- [ ] Generate a test with a new test root -**Manual scenario #4** +**Manual scenario #5** - [ ] Create a new Idea project - [ ] Add a simple java file to test -- [ ] Try to generate tests for several classes +- [ ] Generate tests for several classes From 0091af9f0767d2e733529120f40ff2dce8d62e11 Mon Sep 17 00:00:00 2001 From: Alena Lisevych Date: Tue, 21 Jun 2022 11:24:52 +0300 Subject: [PATCH 2/2] removed "build the project" step from manual test_request template --- .github/ISSUE_TEMPLATE/test_request.md | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/test_request.md b/.github/ISSUE_TEMPLATE/test_request.md index 95341bc695..b93ca59e79 100644 --- a/.github/ISSUE_TEMPLATE/test_request.md +++ b/.github/ISSUE_TEMPLATE/test_request.md @@ -17,7 +17,6 @@ assignees: '' - [ ] Clone or reuse UTBot project (https://github.com/UnitTestBot/UTBotJava.git) - [ ] Open the project in the IDE - [ ] Install the downloaded plugin -- [ ] Build the project (Instruction is needed) *Go through manual scenarios*