File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -7,13 +7,13 @@ Create a `BUILD` file in your code directory with a [test rule](https://bazel.bu
7
7
You can then test your code by running:
8
8
9
9
``` sh
10
- blaze test < dir> :< rule>
10
+ bazel test < dir> :< rule>
11
11
```
12
12
13
13
All tests can be run with:
14
14
15
15
``` sh
16
- blaze test ...:all
16
+ bazel test ...:all
17
17
```
18
18
19
19
## Automated Integration Testing
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ INFO: Elapsed time: 3.107s, Critical Path: 0.22s
17
17
$
18
18
```
19
19
20
- The JAR file is accessable using the path shown in the output.
20
+ The JAR file is accessible using the path shown in the output.
21
21
22
22
If you cannot install Bazel, you can build the JAR file manually with:
23
23
@@ -26,7 +26,7 @@ mkdir build
26
26
javac -d build com/google/openlocationcode/OpenLocationCode.java
27
27
```
28
28
29
- This will create a JAR file in the ` build ` directory. Change that to a suitable location.
29
+ This will create a JAR file in the ` build ` directory. Change that to a suitable location.
30
30
31
31
### Running tests
32
32
You can’t perform that action at this time.
0 commit comments