Big O' Notation
unread,Mar 6, 2008, 6:39:06 PM3/6/08Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to testng...@googlegroups.com
Hello everyone,
I see that the provided @DataProvider example in Cedric's Book works fairly well where the return is:
return new Object[][]
{
{ lower-1, lower, upper, false},
{ lower, lower, upper, true },
{ lower+1, lower, upper, true},
{ upper, lower, upper, true},
{ upper+1, lower, upper, false},
};
I was wondering if anyone had a working example where the DataSource is a DataBase, such as Oracle, or better yet, MySQL. If so, can you please post the example. It would be very helpful!
Thanks,
-Big ONotation