TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
John Hammond
NA
16
8.9k
NUnit Testcase with an import file for my data
Aug 3 2015 11:33 AM
With the testcase below how do I import data from an external source like xml file or excel to test my properties without the hardcode of the data below.Any help will be appreciated. Thanks JB
[TestCase(true)]
public void AddNewCategory(bool expectedResult)
{
//Add new Category
bool results = true;
string sqlStr = String.Empty;
ODP_DataClient service = new ODP_DataClient();
service.ExecuteNonQuery(dbConn, "DELETE FROM WSINTRA_TBL_MAILSVCS_KEY WHERE C_NAME = 'TestPlate' ");
MailsvcMenu cat = new MailsvcMenu();
cat.Id = "57";
cat.Category = "2";
cat.CategoryName = "TestPlate";
cat.Type = "1";
cat.RateId = "2";
cat.Stat = "A";
List<string> list = MailAdmin.CategoryUpdate(cat);
results = results && list.Count.Equals(0);
DataSet data = service.GetDataSet(dbConn, "SELECT COUNT(*) ROW_COUNT from WSINTRA_TBL_MAILSVCS_KEY WHERE ID = " + "'" + cat.Id + "'");
DataRow row = data.Tables[0].Rows[0];
int count = Convert.ToInt32(row["ROW_COUNT"]);
results = results && count.Equals(1);
Assert.IsTrue(results && expectedResult);
}
Reply
Answers (
0
)
HTML and JAVASCRIPT BFS DFS code not working
Nested Ajax Function Call Webservice