File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -63,6 +63,8 @@ public class UnitTestManager : MonoBehaviour
6363 /// </summary>
6464 public OnTestsComplete OnTestCompleteCallback { get ; set ; }
6565
66+ [ SerializeField ]
67+ private string m_ProjectNameToTest = "" ;
6668 public static string ProjectToTest = null ;
6769
6870 /// <summary>
@@ -207,7 +209,7 @@ private void OnGUI()
207209 string sButtonLabel = "Run " + t . Name ;
208210 if ( GUILayout . Button ( sButtonLabel , GUILayout . MinWidth ( Screen . width * 0.4f ) , GUILayout . MinHeight ( Screen . height * 0.04f ) ) )
209211 {
210- IBM . Watson . DeveloperCloud . Editor . UnitTestManager . ProjectToTest = Config . Instance . GetVariableValue ( "PACKAGE_PREFIX" ) ;
212+ IBM . Watson . DeveloperCloud . Editor . UnitTestManager . ProjectToTest = m_ProjectNameToTest ;
211213 QueueTest ( t , true ) ;
212214 }
213215 }
You can’t perform that action at this time.
0 commit comments