maven test后没有生成surefire-report文件夹及相关文件

这里不是应该显示一个TESTS么

运行之后也没有生成surefire-report文件夹


//测试文件
package com.bao1;

import org.junit.Assert;
import org.junit.Test;

public class testMaven {
       
       @Test
       public void testAddMethod11() {
              Test1 test1 = new Test1();
              int sum = test1.add(10, 20);
              Assert.assertEquals(20, sum);
       }
}

//源文件
package com.bao1;
public class Test1 {
    public static void main(String[] args) {
       Test1 test1 = new Test1();
       int sum=test1.add(30,20);
        System.out.println(sum);
    }

    public int add(int m1, int m2) {
        System.out.println("结果为:");
        return m1 + m2;
    }
}