Compare commits

..

No commits in common. "6bf8a382d849c820247284ef773b3fd01b066a72" and "a391453d7ef3d56dd632b1cffbeb5a50a8b7efff" have entirely different histories.

4 changed files with 1 additions and 22 deletions

View File

@ -1,4 +1,4 @@
# 操作说明2
# adsfasdfsadf
当然可以!以下是一份 **专为协作者(如你)量身定制的完整 Git + CI/CD 协作流程指南**,基于你的真实使用场景:

View File

@ -11,12 +11,4 @@
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
</properties>
<dependencies>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>5.12.2</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>

View File

@ -4,10 +4,5 @@ public class App {
public static void main(String[] args) {
System.out.println("Hello, World!");
}
public String greet() {
return "Hello, World!";
}
}

View File

@ -1,8 +0,0 @@
package com.example;
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.*;
public class AppTest {
@Test public void testGreet() { App app = new App(); assertEquals("Hello, World!", app.greet()); }
}