生成unite.test后,把之前編好的程序粘貼復(fù)制過來,還是原來的程序,并沒有檢測到啊
package add;
/**
?* Created by D&LL on 2017/4/28.
?*/
public class Divide {
? ? public static int divide(int a, int b) {
? ? ? ? if (b == 0) {
? ? ? ? ? ? return 0;
? ? ? ? }
? ? ? ? {
? ? ? ? ? ? return a / b;
? ? ? ? }
? ? }
}