~ubuntu-branches/ubuntu/trusty/monodevelop/trusty-proposed

« back to all changes in this revision

Viewing changes to external/ngit/NGit.Test/NGit.Transport/OpenSshConfigTest.cs

  • Committer: Package Import Robot
  • Author(s): Jo Shields
  • Date: 2013-05-12 09:46:03 UTC
  • mto: This revision was merged to the branch mainline in revision 29.
  • Revision ID: package-import@ubuntu.com-20130512094603-mad323bzcxvmcam0
Tags: upstream-4.0.5+dfsg
ImportĀ upstreamĀ versionĀ 4.0.5+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
227
227
                {
228
228
                        OpenSshConfig.Host h = osc.Lookup("orcz");
229
229
                        NUnit.Framework.Assert.IsNotNull(h);
230
 
                        NUnit.Framework.Assert.AreEqual(false, h.IsBatchMode());
 
230
                        NUnit.Framework.Assert.IsFalse(h.IsBatchMode());
231
231
                }
232
232
 
233
233
                /// <exception cref="System.Exception"></exception>
237
237
                        Config("Host orcz\n" + "\tBatchMode yes\n");
238
238
                        OpenSshConfig.Host h = osc.Lookup("orcz");
239
239
                        NUnit.Framework.Assert.IsNotNull(h);
240
 
                        NUnit.Framework.Assert.AreEqual(true, h.IsBatchMode());
 
240
                        NUnit.Framework.Assert.IsTrue(h.IsBatchMode());
241
241
                }
242
242
 
243
243
                /// <exception cref="System.Exception"></exception>
248
248
                                );
249
249
                        OpenSshConfig.Host h = osc.Lookup("orcz");
250
250
                        NUnit.Framework.Assert.IsNotNull(h);
251
 
                        NUnit.Framework.Assert.AreEqual(true, h.IsBatchMode());
 
251
                        NUnit.Framework.Assert.IsTrue(h.IsBatchMode());
252
252
                }
253
253
        }
254
254
}