本文整理汇总了C#中RefMap.keySet方法的典型用法代码示例。如果您正苦于以下问题:C# RefMap.keySet方法的具体用法?C# RefMap.keySet怎么用?C# RefMap.keySet使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类RefMap
的用法示例。
在下文中一共展示了RefMap.keySet方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: testEmpty_NoPrefix1
public void testEmpty_NoPrefix1()
{
RefMap map = new RefMap("", packed, loose, resolved);
Assert.IsTrue(map.isEmpty()); // before size was computed
Assert.AreEqual(0, map.size());
Assert.IsTrue(map.isEmpty()); // after size was computed
Assert.IsFalse(map.entrySet().iterator().hasNext());
Assert.IsFalse(map.keySet().iterator().hasNext());
Assert.IsFalse(map.containsKey("a"));
Assert.IsNull(map.get("a"));
}
示例2: testEmpty_WithPrefix
public void testEmpty_WithPrefix()
{
global::GitSharp.Core.Ref master = newRef("refs/heads/master", ID_ONE);
packed = toList(master);
RefMap map = new RefMap("refs/tags/", packed, loose, resolved);
Assert.IsTrue(map.isEmpty()); // before size was computed
Assert.AreEqual(0, map.size());
Assert.IsTrue(map.isEmpty()); // after size was computed
Assert.IsFalse(map.entrySet().iterator().hasNext());
Assert.IsFalse(map.keySet().iterator().hasNext());
}