2
Answers

Testing in C#?

Jay

Jay

15y
3.4k
1
Just turned a C# programmer. I had been developing in Java for 8 years. But now i need to learn a new language after going into my new job.

What are the testing methods available for testing in C# and in Visual Studio IDE?

Is there anything similar to Java's JUnit testing + Java assertions for C#?
Any other tools for testing in C#?
Answers (2)
0
Administrator

Administrator

Admin 2.3k 1.3m 21y
Thanks for that - works well.
0
Administrator

Administrator

Admin 2.3k 1.3m 21y
Yes, you have. But the Page property of user controls is declared as System.Web.UI.Page (of course, how could it know the name of your base class). All you need to do is cast it to appropriatetype. Just use following code on your control RVPage myPage = Page as RVPage; if (myPage != null) { // myPage.Entity is available here }