Exemplo n.º 1
0
		void GetUnitTestsPad()
		{
			unitTestsPad = context.OpenUnitTestsPad;
			if (unitTestsPad == null) {
				unitTestsPad = CreateEmptyUnitTestsPad();
			}
		}
Exemplo n.º 2
0
 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();
			}
		}
Exemplo n.º 4
0
 void GetUnitTestsPad(IUnitTestsPad unitTestsPad)
 {
     if (unitTestsPad != null)
     {
         this.unitTestsPad = unitTestsPad;
     }
     else
     {
         this.unitTestsPad = new EmptyUnitTestsPad();
     }
 }