Skip to content

Commit ed12b3d

Browse files
authored
Merge pull request #148 from gsmet/patch-2
Update 02_basics.adoc
2 parents e992e60 + f9764d8 commit ed12b3d

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

documentation/modules/ROOT/pages/02_basics.adoc

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ The scaffolding process also creates a test case for the example endpoint.
7676

7777
Check the file `GreetingResourceTest.java` in the folder `src/test/java` to see what a Quarkus integration test looks like.
7878

79-
When running this test, the application is started once, then all tests are executed, and finally, the application stops. Although it is not mandatory, by default the RestAssured project is used to test Rest endpoints but it is up to you to change that.
79+
When running this test, the application is started once, then all tests are executed, and finally, the application stops. Although it is not mandatory, by default the RestAssured project is used to test REST endpoints but it is up to you to change that.
8080

8181
You can run the test in your IDE or by running the following:
8282

@@ -101,15 +101,15 @@ Quarkus CLI::
101101
quarkus test
102102
----
103103
104-
NOTE: `quarkus test` starts tests in continuous testing mode (more about this below) so to return to the command line after the tests ran you will need to press (q)
104+
NOTE: `quarkus test` starts tests in continuous testing mode (more about this below) so to return to the command line after the tests ran you will need to press kbd:[q].
105105
--
106106
====
107107

108108
== Open the Project in your IDE
109109

110110
Open or import the generated project into your IDE.
111111

112-
If you are using **vscode** you can open the project with:
112+
If you are using VS Code, you can open the project with:
113113

114114
[.console-input]
115115
[source,bash,subs="+macros,+attributes"]
@@ -121,13 +121,13 @@ NOTE: If you use `tutorial-tools`, your host `quarkus-tutorial/work` contains th
121121

122122
== Live Coding (Development mode)
123123

124-
Stop the Quarkus application that might be running in `jvm` or `native` mode.
124+
Stop the Quarkus application that might be running in JVM or native mode.
125125

126126
_Live Coding_ or _Development mode_ enables hot deployment with background compilation, which means that when you modify your Java files and/or your resource files and refresh your browser, these changes will automatically take effect.
127127

128128
This is probably one of the best features of Quarkus: enabling a very fast and productive iterative feedback loop.
129129

130-
Let's start the _Live Coding_ mode by invoking `mvn`. You probably won't need to stop/start Quarkus again during this tutorial:
130+
Let's start the _Live Coding_ mode by using the `dev` command. You probably won't need to stop/start Quarkus again during this tutorial:
131131

132132
[tabs%sync]
133133
====
@@ -182,6 +182,6 @@ Press `r` and the tests will start running. You should see the status change dow
182182
All 1 test is passing (0 skipped), 1 test was run in 11705ms. Tests completed at 16:02:32.
183183
----
184184

185-
TIP: If you don’t want to have continuous testing enabled, you can change this by adding `quarkus.test.continuous-testing=disabled` in `application.properties`.
185+
TIP: If you don’t want to have continuous testing enabled, you can change this by adding `quarkus.test.continuous-testing=disabled` to your `src/main/resources/application.properties`.
186186

187-
You can find more details about controlling continuous testing in https://quarkus.io/guides/continuous-testing#controlling-continuous-testing[this guide].
187+
You can find more details about controlling continuous testing in https://quarkus.io/guides/continuous-testing#controlling-continuous-testing[this guide].

0 commit comments

Comments
 (0)