You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
stringmodelPath=Path.Join(string.Join("\\",splitPath),"Models","Simple 2-story structure with results.rtd");
53
54
m_Adapter=newRobotAdapter(modelPath,null,true);
55
+
//Forces Analytical_Engine to be loaded up. This is due to some parts of the call-chain not hard wired. This ensures that methods from Analytical_Engine are loaded and usable from RunExtensionMethod
Copy file name to clipboardExpand all lines: .ci/unit-tests/Robot_Adapter_Tests/PushTests.cs
+5-3Lines changed: 5 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -49,6 +49,8 @@ public class PushTests
49
49
publicvoidOntimeSetup()
50
50
{
51
51
m_Adapter=newRobotAdapter("",null,true);
52
+
//Forces Analytical_Engine to be loaded up. This is due to some parts of the call-chain not hard wired. THis ensures that methods from Analytical_Engine are loaded and usable from RunExtensionMethod
53
+
Assembly.Load("Analytical_Engine");
52
54
}
53
55
54
56
[SetUp]
@@ -237,7 +239,7 @@ public void PushPanelsWithTag()
0 commit comments