13 lines
345 B
Java
13 lines
345 B
Java
|
package com.guwan.backend.controller;
|
||
|
|
||
|
// 测试用例类
|
||
|
class TestCase {
|
||
|
String input; // 输入数据
|
||
|
String expectedOutput; // 预期输出
|
||
|
int timeoutSeconds = 2;// 超时时间
|
||
|
|
||
|
public TestCase(String input, String expectedOutput) {
|
||
|
this.input = input;
|
||
|
this.expectedOutput = expectedOutput;
|
||
|
}
|
||
|
}
|