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
63
63
/// </summary>
64
64
public OnTestsComplete OnTestCompleteCallback { get ; set ; }
65
65
66
+ [ SerializeField ]
67
+ private string m_ProjectNameToTest = "" ;
66
68
public static string ProjectToTest = null ;
67
69
68
70
/// <summary>
@@ -207,7 +209,7 @@ private void OnGUI()
207
209
string sButtonLabel = "Run " + t . Name ;
208
210
if ( GUILayout . Button ( sButtonLabel , GUILayout . MinWidth ( Screen . width * 0.4f ) , GUILayout . MinHeight ( Screen . height * 0.04f ) ) )
209
211
{
210
- IBM . Watson . DeveloperCloud . Editor . UnitTestManager . ProjectToTest = Config . Instance . GetVariableValue ( "PACKAGE_PREFIX" ) ;
212
+ IBM . Watson . DeveloperCloud . Editor . UnitTestManager . ProjectToTest = m_ProjectNameToTest ;
211
213
QueueTest ( t , true ) ;
212
214
}
213
215
}
You can’t perform that action at this time.
0 commit comments