结对项目作业
一、题目简介
两人共同合作,设计一个小游戏,黑白棋游戏。
二、结对分工
本人负责写代码,队友负责测试。
队友博客链接: http://www.cnblogs.com/liuyu0628/p/4508032.html
三、Github地址链接
https://github.com/guocui/jiedui
四、测试截图
测试代码:
package liuyu;
import static org.junit.Assert.*;
import org.junit.Before;
import org.junit.Test;
public class ChessTest {
@Before
public void setUp() throws Exception {
}
@Test
public void testMain() {
fail("Not yet implemented");
}
@Test
public void testShowframe() {
fail("Not yet implemented");
}
@Test
public void testClear() {
fail("Not yet implemented");
}
@Test
public void testPaintGraphics() {
fail("Not yet implemented");
}
}
import static org.junit.Assert.*;
import org.junit.Before;
import org.junit.Test;
public class ChessTest {
@Before
public void setUp() throws Exception {
}
@Test
public void testMain() {
fail("Not yet implemented");
}
@Test
public void testShowframe() {
fail("Not yet implemented");
}
@Test
public void testClear() {
fail("Not yet implemented");
}
@Test
public void testPaintGraphics() {
fail("Not yet implemented");
}
}
测试截图如下
程序运行截图
五:实验心得
通过本次实验,让我知道团队合作的重要性,在实验过程中,我们两人互相帮助,互相学习,不仅提高了编程的效率,同时也加深了对java学习的理解。在写代码的过程中,同伴在旁边督促并且为你指出错误,有不明白的还可以互相讨论,学习起来更有动力。总之,还是要好好学习编程。