Skip to content

Commit 7b5f37a

Browse files
committed
Use entered information to connect
1 parent e202e64 commit 7b5f37a

File tree

1 file changed

+2
-2
lines changed
  • PlsqlDeveloperUtPlsqlPlugin/utPLSQL.UI.Standalone

1 file changed

+2
-2
lines changed

PlsqlDeveloperUtPlsqlPlugin/utPLSQL.UI.Standalone/LoginForm.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ public LoginForm()
1313
private void BtnRunTests_Click(object sender, EventArgs e)
1414
{
1515
var realTimeTestRunner = new RealTimeTestRunner();
16-
realTimeTestRunner.Connect("toscamtest", "toscamtest", "CA40");
16+
realTimeTestRunner.Connect(txtUsername.Text, txtPassword.Text, txtDatabase.Text);
1717

1818
var testRunnerWindow = new TestRunnerWindow(realTimeTestRunner, null);
19-
testRunnerWindow.RunTestsAsync("USER", null, "toscamtest", null, false);
19+
testRunnerWindow.RunTestsAsync("USER", null, txtUsername.Text, null, false);
2020
}
2121
}
2222
}

0 commit comments

Comments
 (0)