Rule 1: Don't try to boil the ocean. Test only a small section of code at a time. For unit tests, try to minimize external dependencies and interactions. This includes not spending time verifying that the core operating system is working, and core classes provided by the .NET framework, for example. It's good to test that your code interacts with these external things correctly, but keep in mind that your focus is on testing the code you wrote, not on testing everybody else's code that your code uses.
Making sure that all the parts work well together is the job of integration testing, which is a very different testing scheme from unit testing. Integration testing often requires different tools and different tactics from unit testing, and ultimately has different objectives from unit testing.
If you are writing your own implementation of the standard ICollection interface, then you should unit test your collection implementation. Otherwise, you don't need to test that calling ICollection.Add() on a stock collection class provided by .NET does what it's supposed to do.
If your class uses a collection internally and exposes methods that manipulate the contents of that collection, one approach is to use only the public methods of your class to cause the class to change its internal state, and only use the public methods to see the effect of that action.
However, in many situations the internal state may not be fully exposed through public methods. You can poke the object, but you can't really see exactly what happened inside. Abstraction is good for system design because it hides implementation details from the consumers so that the details can be changed in the future as needed while maintaining the same the public interface and semantic contract. Hiding internal details is good for system resiliency and longevity, but creates barriers for testing.
In such situations it is useful to enable some sort of hook or interface to the class to allow your tests to take a peek at the internal state. This does make your tests more tightly bound to the implementation details (change the code, and you'll have to change the tests too), but it also enables your tests to make much more detailed assessments of whether public actions are having the desired effect on the state of the object, particularly when the object deliberately obscures that internal state.
One example of such an internal access hook is the InternalsVisibleTo attribute in .NET. You declare in your production assembly that it's ok for your test assembly to access class members declared with "internal" visibility. Something you might automatically declare as private can be nudged up to internal to make it visible to your unit tests. The data is still protected from normal clients.
Another term you should look up is the use of "mock" classes in testing. A mock is a fake class that provides a minimal implemention of an interface or type required by the code being tested, and is used to isolate the code you're interested in testing from external code that you're not interested in right now.
For example, if the code you're testing calls a web service, it will be difficult to fully test all the many ways that a web service call can fail - time outs, connection refused, dns resolution failure, etc etc. Swapping in a mock web service interface allows your test suite to manipulate the data provider that your code under test relies upon. You're not testing the data provider, you want to test how your code responds to errors, bad data, and good data returned by the provider. So mock the provider and control that data yourself in the test suite.