Maven日志在测试阶段打印到控制台

时间:2018-09-23 05:32:50

标签: java maven junit maven-3 junit4

我正在maven github存储库中执行测试。

我想在测试阶段使用命令mvn clean test -X >> debug.log

在控制台中记录以下语句的打印内容
  1. https://github.com/rajcspsg/avro/blob/debug-statments/lang/java/avro/src/main/java/org/apache/avro/reflect/ReflectData.java#L772
  2. https://github.com/rajcspsg/avro/blob/debug-statments/lang/java/avro/src/test/java/org/apache/avro/reflect/TestReflect.java#L333
  3. https://github.com/rajcspsg/avro/blob/debug-statments/lang/java/avro/src/test/java/org/apache/avro/reflect/TestReflect.java#L343
  4. https://github.com/rajcspsg/avro/blob/debug-statments/lang/java/avro/src/test/java/org/apache/avro/reflect/TestReflect.java#L353

在完全执行测试之后,我看不到包含这些打印语句的日志。

以下命令返回空结果

1. $ grep -n "messages +" debug.log 
2. $ grep -n "starting testP0" debug.log 
3. $ grep -n "request is" debug.log 
4. $ grep -n "ending testP0" debug.log

如何在控制台中将这些打印语句放在Java源文件和测试文件中?

0 个答案:

没有答案