I'm looking to create some Silverlight unit tests. I've started by downloading the Silverlight Toolkit and looking at the unit tests there which are all built on the Silverlight Unit Testing Framework.
However it seems that the test class structure is quite complex in the source and I don't want to re-write the test classes defined in that package (e.g. ControlTest->FrameworkElementTest->TestBase->SilverlightTest inheritance chain is defined and only the last class is all defined in the Silverlight Toolkit).
I'm looking for a code sample of the simplest unit test implementation possible with the Silverlight Unit Test Framework (e.g. executing Assert.IsTrue(true)).