因项目的包名修改,我们需要重新部分测试代码

This commit is contained in:
YuCheng Hu 2024-01-30 09:13:11 -05:00
parent e4c068d924
commit a26956a60d
No known key found for this signature in database
GPG Key ID: 942395299055675C
1 changed files with 1 additions and 20 deletions

View File

@ -1,5 +1,6 @@
package com.isharkfly.toolkits.codebank.tests;
import junit.framework.TestCase;
import org.junit.Test;
import org.junit.jupiter.api.AfterAll;
import org.junit.jupiter.api.BeforeAll;
@ -7,26 +8,6 @@ import org.junit.jupiter.api.TestInstance;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import junit.framework.TestCase;
/**
* Object of VariableOssez
*
* @author YuCheng
*
*/
class OssezVariable {
int s1, s2;
static int s3;
OssezVariable(int x, int y, int z) {
s1 = x;
s2 = y;
s3 = z;
}
}
/**
*
* @author YuCheng