vscode中引入的jar包@test注解测试没有效果

我在空的java工程中引入了junit的jar包,想简单的测试一下,但控制台什么也没发生


public class t {
    


    @Test
    public void f(){
        System.out.println("hello ");
    }

    @Test
    public void d(){
        ScheduledExecutorService ses = Executors.newScheduledThreadPool(4);
        ses.scheduleAtFixedRate(new players(), 0, 3, TimeUnit.SECONDS);
    }
}

img

下面是我的setting.json文件

{
    "java.project.sourcePaths": ["src"],
    "java.project.outputPath": "bin",

    "files.exclude": {
        "**/.classpath": true,
        "**/.project": true,
        "**/.settings": true,
        "**/.factorypath": true
    },

    "java.project.referencedLibraries": [
        "lib/*.jar"
    ],

    
}


开发java工程推荐用更专业的idea

我找到问题了,junit的jar包编译依赖hamcrest-core 这个jar包