Other |
---|
tbdUnresolved |
Relates :
|
The following two @Run methods invoke the wrong @Test methods, most likely due to a copy-paste error: @Run(test = "testStrideNegScalePosInIntLoop2") private void testStrideNegScalePosInIntLoop2_runner() { testStrideNegScalePosInIntLoop1(0, 100, 200, 0); } @Run(test = "testStridePosScaleNegInIntLoop2") private void testStridePosScaleNegInIntLoop2_runner() { testStridePosScaleNegInIntLoop1(0, 100, 200, 198); } We should change these to invoke the correct methods instead.
|