An Isolation framework is a unit testing framework with a special ability to isolate the dependent code.
Simple example in case of c# .net is DateTime.Now, for a method say A, if it is dependent on DateTime.Now; isolation framework will provide a way to isolate this dependency, there by enabling You to create a UnitTest easily.
Examples of frameworks: Moles framework