void GetUnitTestsPad() { unitTestsPad = context.OpenUnitTestsPad; if (unitTestsPad == null) { unitTestsPad = CreateEmptyUnitTestsPad(); } }
void GetUnitTestsPad(IUnitTestsPad unitTestsPad) { if (unitTestsPad != null) { this.unitTestsPad = unitTestsPad; } else { this.unitTestsPad = new EmptyUnitTestsPad(); } }