当我编写单元测试时,我将它们视为验证代码行为符合预期的机制,以及如何使用代码的文档示例。因此,我希望将测试类的内容作为示例包含在内。所以像这样:
/**
* Foos the bar
* @example FooBarTest#testFooingBar()
* @param bar The {@link Bar} to foo
* return The fooed {@code Bar}
*/
public Bar fooBar(Bar bar)
{
// Completely foo the bar
}
然后当它被渲染时,会在javadoc中看到FooBarTest.testFooingBar()的内容。
我做了一些谷歌搜索,没有看到任何东西。那么有什么方法可以做到这一点(也许是maven插件)?
答案 0 :(得分:0)
我刚刚完成了这样做的测试版库。它叫做Codelet。以下是我刚刚在this question中发布的答案:
这是我尝试使用Codelet(GitHub link)回答的问题。
Codelet 使用taglet自动将已经过单元测试的示例代码插入到JavaDoc中。与所有taglet一样,Codelet作为javadoc.exe
的一部分执行。它现已发布测试版(并且需要beta测试人员!)。
有四个Codelet标记:
{@codelet.and.out}
:显示紧跟其输出的源代码{@codelet}
:仅显示源代码{@codelet.out}
:仅显示输出{@file.textlet}
:显示任何纯文本文件的内容,例如示例代码的输入。 {@.codelet.and.out com.github.aliteralmind.codelet.examples.adder.AdderDemo%eliminateCommentBlocksAndPackageDecl()}
使用eliminateCommentBlocksAndPackageDecl()
"自定义程序"消除包声明行和所有多行注释(例如许可证和JavaDoc块)。
输出(水平规则之间):
public class AdderDemo {
public static final void main(String[] ignored) {
Adder adder = new Adder();
System.out.println(adder.getSum());
adder = new Adder(5, -7, 20, 27);
System.out.println(adder.getSum());
}
}
0
45
另一种方法是仅显示示例代码的一部分:A code snippet:
{@.codelet.and.out com.github.aliteralmind.codelet.examples.adder.AdderDemo%lineRange(1, false, "Adder adder", 2, false, "println(adder.getSum())", "^ ")}
这显示与上面相同的示例,从(包含)Adder adder
的行开始,以 second println(adder.getSum())
结束。这也消除了额外的压痕,在这种情况下是六个空格。
输出(水平规则之间):
Adder adder = new Adder();
System.out.println(adder.getSum());
adder = new Adder(5, -7, 20, 27);
System.out.println(adder.getSum());
<强> 输出: 强>
0
45
所有taglet都接受定制器。
可以编写自己的定制器,例如,可以"linkify" function names,更改显示源和输出的模板,并对任何或所有行进行任意更改。示例包括以黄色突出显示某些内容或进行正则表达式替换。
作为最后一个例子,与上面的例子形成鲜明对比的是,这里是一个从示例代码中盲目打印所有行的标记,没有任何更改。它使用no customizer:
{@.codelet.and.out com.github.aliteralmind.codelet.examples.adder.AdderDemo}
输出(水平规则之间):
/*license*\
Codelet: Copyright (C) 2014, Jeff Epstein (aliteralmind __DASH__ github __AT__ yahoo __DOT__ com)
This software is dual-licensed under the:
- Lesser General Public License (LGPL) version 3.0 or, at your option, any later version;
- Apache Software License (ASL) version 2.0.
Either license may be applied at your discretion. More information may be found at
- http://en.wikipedia.org/wiki/Multi-licensing.
The text of both licenses is available in the root directory of this project, under the names "LICENSE_lgpl-3.0.txt" and "LICENSE_asl-2.0.txt". The latest copies may be downloaded at:
- LGPL 3.0: https://www.gnu.org/licenses/lgpl-3.0.txt
- ASL 2.0: http://www.apache.org/licenses/LICENSE-2.0.txt
\*license*/
package com.github.aliteralmind.codelet.examples.adder;
/**
<P>Demonstration of {@code com.github.aliteralmind.codelet.examples.adder.Adder}.</P>
<P>{@code java com.github.aliteralmind.codelet.examples.AdderDemo}</P>
@since 0.1.0
@author Copyright (C) 2014, Jeff Epstein ({@code aliteralmind __DASH__ github __AT__ yahoo __DOT__ com}), dual-licensed under the LGPL (version 3.0 or later) or the ASL (version 2.0). See source code for details. <A HREF="http://codelet.aliteralmind.com">{@code http://codelet.aliteralmind.com}</A>, <A HREF="https://github.com/aliteralmind/codelet">{@code https://github.com/aliteralmind/codelet}</A>
**/
public class AdderDemo {
public static final void main(String[] ignored) {
Adder adder = new Adder();
System.out.println(adder.getSum());
adder = new Adder(5, -7, 20, 27);
System.out.println(adder.getSum());
}
}
<强> 输出: 强>
0
45
Codelet处于测试阶段,但相当稳定。请考虑试一试,并在GitHub问题跟踪器中提出您的意见和批评。
感谢。