active_mq #6

Merged
honeymoose merged 2 commits from active_mq into main 2024-01-30 09:17:40 -05:00
1 changed files with 1 additions and 20 deletions
Showing only changes of commit a26956a60d - Show all commits

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