Skip to content

Commit 7c5ca62

Browse files
authored
Merge pull request googlesamples#52 from tnorbye/snapshot6
Update documentation snapshot
2 parents 0726800 + e03fb16 commit 7c5ca62

17 files changed

+1646
-244
lines changed

docs/README.md.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
- [How to use baselines](usage/baselines.md.html)
2626
- [How to use `lint.xml` files](usage/lintxml.md.html)
2727
- [Gradle plugin DSL](usage/agp-dsl.md.html)
28+
- [Using a newer version of lint than the Gradle bundled one](usage/newer-lint.md.html)
2829
- [Lint command line](usage/flags.md.html)
2930
- [Environment variables and properties](usage/variables.md.html)
3031
* Documents for authors of additional lint checks, in the
@@ -36,6 +37,7 @@
3637
- [Analyzing data flow](api-guide/dataflow-analyzer.md.html)
3738
- [Publishing a Lint check](api-guide/publishing.md.html)
3839
- [Unit Testing](api-guide/unit-testing.md.html)
40+
- [Test Modes](api-guide/test-modes.md.html)
3941
- [Adding Quick Fixes](api-guide/quickfixes.md.html)
4042
- [Terminology](api-guide/terminology.md.html)
4143
- [Partial analysis](api-guide/partial-analysis.md.html)
@@ -48,6 +50,8 @@
4850
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
4951

5052
Documentation History:
53+
* July 2021: Added documentation for
54+
[test modes](api-guide/test-modes.md.html)
5155
* June 2021: Added documentation for the
5256
[dataflow analyzer](api-guide/dataflow-analyzer.md.html),
5357
[Lint Gradle DSL](usage/agp-dsl.md.html) and

docs/api-guide.html

Lines changed: 714 additions & 126 deletions
Large diffs are not rendered by default.

docs/api-guide.md.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
(insert api-guide/example.md.html here)
1111
(insert api-guide/publishing.md.html here)
1212
(insert api-guide/unit-testing.md.html here)
13+
(insert api-guide/test-modes.md.html here)
1314
(insert api-guide/quickfixes.md.html here)
1415
(insert api-guide/partial-analysis.md.html here)
1516
(insert api-guide/dataflow-analyzer.md.html here)

docs/api-guide/changes.md.html

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,16 @@
55
information about user visible changes to lint, see the User
66
Guide.
77

8+
**7.1**
9+
10+
* Source-modifying test modes. Lint's testing library now runs your
11+
unit tests through a number of additional paces: it will try
12+
inserting unnecessary parentheses, it will try replacing all
13+
imported symbols with fully qualified names, it will try adding
14+
argument names and reordering arguments to Kotlin calls, etc, and
15+
making sure the same results are reported. More information about
16+
this is available in [](test-modes.md.html).
17+
818
**7.0**
919

1020
* The API level has bumped to 10.
514 KB
Loading

docs/api-guide/nested-test-files.png

191 KB
Loading

0 commit comments

Comments
 (0)