You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: documentation/modules/ROOT/pages/02_basics.adoc
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -76,7 +76,7 @@ The scaffolding process also creates a test case for the example endpoint.
76
76
77
77
Check the file `GreetingResourceTest.java` in the folder `src/test/java` to see what a Quarkus integration test looks like.
78
78
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.
80
80
81
81
You can run the test in your IDE or by running the following:
82
82
@@ -101,15 +101,15 @@ Quarkus CLI::
101
101
quarkus test
102
102
----
103
103
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].
105
105
--
106
106
====
107
107
108
108
== Open the Project in your IDE
109
109
110
110
Open or import the generated project into your IDE.
111
111
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:
113
113
114
114
[.console-input]
115
115
[source,bash,subs="+macros,+attributes"]
@@ -121,13 +121,13 @@ NOTE: If you use `tutorial-tools`, your host `quarkus-tutorial/work` contains th
121
121
122
122
== Live Coding (Development mode)
123
123
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.
125
125
126
126
_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.
127
127
128
128
This is probably one of the best features of Quarkus: enabling a very fast and productive iterative feedback loop.
129
129
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:
131
131
132
132
[tabs%sync]
133
133
====
@@ -182,6 +182,6 @@ Press `r` and the tests will start running. You should see the status change dow
182
182
All 1 test is passing (0 skipped), 1 test was run in 11705ms. Tests completed at 16:02:32.
183
183
----
184
184
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`.
186
186
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