Skip to content

Commit

Permalink
build(release): update build
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Feb 5, 2022
1 parent 41aba33 commit 5acbf29
Show file tree
Hide file tree
Showing 3 changed files with 78 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
<html>
<body>
报告来源格式错误的形参化测试:
<ul>
<li>
<code>MethodSource</code> 具有未知目标或方法不为 static、无实参。
</li>
<li>
<code>ValueSource</code> / <code>EnumSource</code> 类型不能转换为方法形参。
</li>
<li>
未定义来源。
</li>
</ul>
<p>示例:</p>
<pre><code>
class Test {
@MethodSource("parameters")
@ParameterizedTest
void foo(String param) {}
}
</code></pre>
<p>在应用快速修复后:</p>
<pre><code>
class Test {
private static Stream&lt;Arguments&gt; parameters() {
return Stream.empty();
}

@MethodSource("parameters")
@ParameterizedTest
void foo(String param) {}
}
</code></pre>
<!-- tooltip end -->
<p>
<small>2017.2 最新变化</small>
</body>
</html>
Binary file modified plugin-dev-out/zh.jar
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
<html>
<body>
報告來源格式錯誤的參數化測試:
<ul>
<li>
<code>MethodSource</code> 具有未知目標或方法不為 static、無實參。
</li>
<li>
<code>ValueSource</code> / <code>EnumSource</code> 類型不能轉換為方法參數。
</li>
<li>
未定義來源。
</li>
</ul>
<p>示例:</p>
<pre><code>
class Test {
@MethodSource("parameters")
@ParameterizedTest
void foo(String param) {}
}
</code></pre>
<p>在應用快速修復後:</p>
<pre><code>
class Test {
private static Stream&lt;Arguments&gt; parameters() {
return Stream.empty();
}

@MethodSource("parameters")
@ParameterizedTest
void foo(String param) {}
}
</code></pre>
<!-- tooltip end -->
<p>
<small>2017.2 最新變化</small>
</body>
</html>

0 comments on commit 5acbf29

Please sign in to comment.