Skip to content

Commit 0448890

Browse files
authored
[FEATURE] Improve test coverage for MLEngineClassLoader class (#3679)
Improved the test coverage by adding the edge case. Some of the branch coverages which are mssing are unreachable code. The Function, ConnectorExecutor and Ingester values are non null. Resolves #1377 Signed-off-by: Abdul Muneer Kolarkunnu <[email protected]>
1 parent 2d008c8 commit 0448890

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

ml-algorithms/src/test/java/org/opensearch/ml/engine/MLEngineClassLoaderTests.java

+8
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,10 @@
1616
import org.opensearch.ml.common.FunctionName;
1717
import org.opensearch.ml.common.input.Input;
1818
import org.opensearch.ml.common.input.execute.samplecalculator.LocalSampleCalculatorInput;
19+
import org.opensearch.ml.common.input.parameter.MLAlgoParams;
1920
import org.opensearch.ml.common.output.Output;
2021
import org.opensearch.ml.common.output.execute.samplecalculator.LocalSampleCalculatorOutput;
22+
import org.opensearch.ml.engine.algorithms.metrics_correlation.MetricsCorrelation;
2123
import org.opensearch.ml.engine.algorithms.sample.LocalSampleCalculator;
2224
import org.opensearch.transport.client.Client;
2325

@@ -81,4 +83,10 @@ public void testInitInstance_ClassNotFound() {
8183
MLEngineClassLoader.initInstance("SOMETHING ELSE", null, Object.class);
8284
}
8385

86+
@Test
87+
public void initInstanceMetricsCorrelationReturnsNull() {
88+
MetricsCorrelation instance = MLEngineClassLoader.initInstance(FunctionName.METRICS_CORRELATION, null, MLAlgoParams.class);
89+
assertNull(instance);
90+
}
91+
8492
}

0 commit comments

Comments
 (0)