export class TestCase { // numbers x: string; y: string; // results sum: string; difference: string; product: string; quotient: string; sqrtX: string; sqrtY: string; xSquare: string; xCube: string; xGTy: boolean; xLTy: boolean; xGTEy: boolean; xLTEy: boolean; xEQy: boolean; xCTy: i32; xIsNeg: boolean; xIsZero: boolean; xIsInt: boolean; } export class BenchmarkCase { x: string; y: string; }