Issue
I want to write a unit-test which asserts a connection string is valid so that a conenction is established to a SQL Db.
if I have :
string connectionString = GetCOnenctionString();
bool conenctionEstablished = false;
How can I set 'conenctionEstablished' variable's value as a result of a check to a Db with the 'connectionString' provided?
So that I can use it in an Assert.
Solution
You could try to connect in a try/catch then set conenctionEstablished based on whether the connection succeeds or not.
Answered By - sproketboy Answer Checked By - Marilyn (PHPFixing Volunteer)
0 Comments:
Post a Comment
Note: Only a member of this blog may post a comment.