-
Notifications
You must be signed in to change notification settings - Fork 578
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add DackkaPlugin tests #4508
base: main
Are you sure you want to change the base?
Add DackkaPlugin tests #4508
Conversation
Javadoc Changes:--- /home/runner/diff/original/firebase-kotlindoc/android/com/google/firebase/appdistribution/AppDistributionRelease.html 2023-01-06 18:59:40.296208387 +0000
+++ /home/runner/diff/modified/firebase-kotlindoc/android/com/google/firebase/appdistribution/AppDistributionRelease.html 2023-01-06 18:52:11.464971174 +0000
@@ -21,7 +21,7 @@
</thead>
<tbody class="list">
<tr>
- <td width="40%"><code>abstract @<a href="https://developer.android.com/reference/kotlin/androidx/annotation/NonNull.html">NonNull</a> <a href="/docs/reference/android/com/google/firebase/appdistribution/BinaryType.html">BinaryType</a></code></td>
+ <td width="40%"><code>abstract @<a href="https://developer.android.com/reference/kotlin/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/kotlin/java/lang/Object.html">Object</a></code></td>
<td>
<div><code><a href="/docs/reference/android/com/google/firebase/appdistribution/AppDistributionRelease.html#getBinaryType()">getBinaryType</a>()</code></div>
<p>Returns the binary type for this build.</p>
@@ -54,7 +54,7 @@
<h2>Public methods</h2>
<div><a name="getBinaryType--"></a><a name="getbinarytype"></a>
<h3 class="api-name" id="getBinaryType()">getBinaryType</h3>
- <pre class="api-signature no-pretty-print">abstract @<a href="https://developer.android.com/reference/kotlin/androidx/annotation/NonNull.html">NonNull</a> <a href="/docs/reference/android/com/google/firebase/appdistribution/BinaryType.html">BinaryType</a> <a href="/docs/reference/android/com/google/firebase/appdistribution/AppDistributionRelease.html#getBinaryType()">getBinaryType</a>()</pre>
+ <pre class="api-signature no-pretty-print">abstract @<a href="https://developer.android.com/reference/kotlin/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/kotlin/java/lang/Object.html">Object</a> <a href="/docs/reference/android/com/google/firebase/appdistribution/AppDistributionRelease.html#getBinaryType()">getBinaryType</a>()</pre>
<p>Returns the binary type for this build.</p>
</div>
<div><a name="getDisplayVersion--"></a><a name="getdisplayversion"></a> --- /home/runner/diff/original/firebase-kotlindoc/kotlin/com/google/firebase/appdistribution/AppDistributionRelease.html 2023-01-06 18:59:40.308208373 +0000
+++ /home/runner/diff/modified/firebase-kotlindoc/kotlin/com/google/firebase/appdistribution/AppDistributionRelease.html 2023-01-06 18:52:11.504971048 +0000
@@ -21,7 +21,7 @@
</thead>
<tbody class="list">
<tr>
- <td width="40%"><code><a href="/docs/reference/kotlin/com/google/firebase/appdistribution/BinaryType.html">BinaryType</a></code></td>
+ <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a></code></td>
<td>
<div><code><a href="/docs/reference/kotlin/com/google/firebase/appdistribution/AppDistributionRelease.html#getBinaryType()">getBinaryType</a>()</code></div>
<p>Returns the binary type for this build.</p>
@@ -54,7 +54,7 @@
<h2>Public functions</h2>
<div><a name="getBinaryType--"></a><a name="getbinarytype"></a>
<h3 class="api-name" id="getBinaryType()">getBinaryType</h3>
- <pre class="api-signature no-pretty-print">fun <a href="/docs/reference/kotlin/com/google/firebase/appdistribution/AppDistributionRelease.html#getBinaryType()">getBinaryType</a>(): <a href="/docs/reference/kotlin/com/google/firebase/appdistribution/BinaryType.html">BinaryType</a></pre>
+ <pre class="api-signature no-pretty-print">fun <a href="/docs/reference/kotlin/com/google/firebase/appdistribution/AppDistributionRelease.html#getBinaryType()">getBinaryType</a>(): <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a></pre>
<p>Returns the binary type for this build.</p>
</div>
<div><a name="getDisplayVersion--"></a><a name="getdisplayversion"></a> |
Unit Test Results 402 files + 375 402 suites +375 18m 43s ⏱️ + 14m 39s For more details on these failures, see this check. Results for commit 73c035c. ± Comparison against base commit 72b228d. ♻️ This comment has been updated with latest results. |
Size Report 1Affected ProductsNo changes between base commit (ef311dc) and merge commit (9a2b9d8).Test Logs |
Coverage Report 1Affected Products
Test Logs |
buildSrc/src/test/kotlin/com/google/firebase/gradle/plugins/DackkaPluginTests.kt
Outdated
Show resolved
Hide resolved
Ping me when the javadoc changes are final. I'd like to take a quick look at them before approving the PR. Thanks! |
Per b/249825782,
This adds tests to
build-src-check
for theDackkaPlugin
. These tests come with a predefined output that is expected from Dackka, and will rerun the project used to generate said output- and compare it with the expected output. You can read more about it in the documentation forDackkaPluginTests
.This also adds a
testPlugins
that can be used instead of passingenablePluginTests
around the command line. Although support remains forenablePluginTests
.Example: