public void DetectImage() { using (MockContext context = MockContext.Start(this.GetType())) { HttpMockServer.Initialize(this.GetType(), "DetectImage", RecorderMode); ICustomVisionPredictionClient client = GetPredictionClientClient(); using (FileStream stream = new FileStream(Path.Combine("TestImages", "test_image.jpg"), FileMode.Open)) { ImagePrediction results = client.DetectImage(ObjectDetectionProjectId, ObjDetectionPublishedName, stream); ValidateObjDetectionResults(results); } } }