I am writing some unit tests in VS 2010 using Selenium and C#. I have a couple of test cases. For instance, some of my test cases are:
Launch the website: http://localhost:8080. Verify the Sign on page is present. Enter Username and Password, and Log in.
Check to see if Search tab is present. Click on Search tab. Verify the tabs Search Books, Search Images, and Search Web are present.
Click on Search Books. Type "C-Sharp for Dummies". Click Search. Verify appropriate results are returned.
Now, my question is: Is it a better idea to create separate classes for each of the above test cases or is it better to combine them to one class, and just have separate methods?
All three test cases are related to one another. By this I mean, executing #2 requires #1 to be complete first, and #3 requires #2 to complete first. If I make separate classes, I believe I will need to call the method in #1 in the class #2, and call methods in #1 and #2 in the class #3.
I am not so sure what would be a good idea for this. Thanks in advance.