I've been trying to do a sample 3-tier app with PL, BLL, and DAL and now I'm doing some unit tests. I was about to reference the BLL to my test project but then suddenly it won't allow it. I found out that this class library is different from the regular class library.
So, right now, I don't know if I should replace this with the regular class library or continue using the new one (package). What is appropriate for this situation? Lets say this 3-tier program is a cloud app.
Or maybe the right questions are:
- What's the difference between the old class library and this new one?
- When is one appropriate? I can't find clear answers googling around.
- Can you do unit testing with the new one using current MS Test?