本文整理汇总了C#中NodaTime.Text.ValueCursor类的典型用法代码示例。如果您正苦于以下问题:C# ValueCursor类的具体用法?C# ValueCursor怎么用?C# ValueCursor使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
ValueCursor类属于NodaTime.Text命名空间,在下文中一共展示了ValueCursor类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: MatchCaseInsensitive_MatchAndMove
public void MatchCaseInsensitive_MatchAndMove()
{
var value = new ValueCursor("abcd");
Assert.True(value.MoveNext(), "GetNext() 1");
Assert.True(value.MatchCaseInsensitive("AbC", CultureInfo.InvariantCulture.CompareInfo, true));
ValidateCurrentCharacter(value, 3, 'd');
}
示例2: MatchCaseInsensitive_StringNotMatched
public void MatchCaseInsensitive_StringNotMatched()
{
var value = new ValueCursor("xabcdef");
Assert.True(value.MoveNext(), "GetNext() 1");
Assert.False(value.MatchCaseInsensitive("abc", CultureInfo.InvariantCulture.CompareInfo, true));
ValidateCurrentCharacter(value, 0, 'x');
}
示例3: Match_String
public void Match_String()
{
var value = new ValueCursor("abc");
Assert.True(value.MoveNext(), "GetNext() 1");
Assert.True(value.Match("abc"));
Assert.False(value.MoveNext(), "GetNext() end");
}
示例4: TestMatchCaseInsensitive_string
public void TestMatchCaseInsensitive_string()
{
var value = new ValueCursor("abc");
Assert.True(value.MoveNext(), "GetNext() 1");
Assert.True(value.MatchCaseInsensitive("AbC", CultureInfo.InvariantCulture.CompareInfo));
Assert.False(value.MoveNext(), "GetNext() end");
}
示例5: Match_StringNotMatched
public void Match_StringNotMatched()
{
var value = new ValueCursor("xabcdef");
Assert.True(value.MoveNext(), "GetNext() 1");
Assert.False(value.Match("abc"));
ValidateCurrentCharacter(value, 0, 'x');
}
示例6: Match_StringOverLongStringToMatch
public void Match_StringOverLongStringToMatch()
{
var value = new ValueCursor("x");
Assert.True(value.MoveNext());
Assert.False(value.Match("long string"));
ValidateCurrentCharacter(value, 0, 'x');
}
示例7: Parse_Partial_Invalid
public void Parse_Partial_Invalid()
{
var value = new ValueCursor("x17:y");
value.MoveNext();
value.MoveNext();
var result = SimpleOffsetPattern.ParsePartial(value);
Assert.Throws<UnparsableValueException>(() => result.GetValueOrThrow());
}
示例8: MatchCaseInsensitive_MatchWithoutMoving
public void MatchCaseInsensitive_MatchWithoutMoving()
{
var value = new ValueCursor("abcd");
Assert.True(value.MoveNext(), "GetNext() 1");
Assert.True(value.MatchCaseInsensitive("AbC", CultureInfo.InvariantCulture.CompareInfo, false));
// We're still looking at the start
ValidateCurrentCharacter(value, 0, 'a');
}
示例9: Match_Char
public void Match_Char()
{
var value = new ValueCursor("abc");
Assert.True(value.MoveNext(), "GetNext() 1");
Assert.True(value.Match('a'), "First character");
Assert.True(value.Match('b'), "Second character");
Assert.True(value.Match('c'), "Third character");
Assert.False(value.MoveNext(), "GetNext() end");
}
示例10: ParsePartial_ValidAtEnd
public void ParsePartial_ValidAtEnd()
{
var value = new ValueCursor("x17:30");
value.MoveNext();
value.MoveNext();
var result = SimpleOffsetPattern.ParsePartial(value);
Assert.AreEqual(Offset.FromHoursAndMinutes(17, 30), result.Value);
// Finish just after the value, which in this case is at the end.
Assert.AreEqual(TextCursor.Nul, value.Current);
}
示例11: ParsePartial_ValidInMiddle
public void ParsePartial_ValidInMiddle()
{
var value = new ValueCursor("x17:30y");
value.MoveNext();
value.MoveNext();
// Start already looking at the value to parse
Assert.AreEqual('1', value.Current);
var result = SimpleOffsetPattern.ParsePartial(value);
Assert.AreEqual(Offset.FromHoursAndMinutes(17, 30), result.Value);
// Finish just after the value
Assert.AreEqual('y', value.Current);
}
示例12: CompareOrdinal_LongMatch_ValueIsEarlier
public void CompareOrdinal_LongMatch_ValueIsEarlier()
{
var value = new ValueCursor("xabc");
value.Move(1);
Assert.Less(value.CompareOrdinal("cccc"), 0);
Assert.AreEqual(1, value.Index); // Cursor hasn't moved
}
示例13: CompareOrdinal_LongMatch_ValueIsLater
public void CompareOrdinal_LongMatch_ValueIsLater()
{
var value = new ValueCursor("xabc");
value.Move(1);
Assert.Greater(value.CompareOrdinal("aaaa"), 0);
Assert.AreEqual(1, value.Index); // Cursor hasn't moved
}
示例14: ParseInt64Digits_TooFewDigits
public void ParseInt64Digits_TooFewDigits()
{
var value = new ValueCursor("a12b");
Assert.True(value.MoveNext());
ValidateCurrentCharacter(value, 0, 'a');
Assert.True(value.MoveNext());
long actual;
Assert.False(value.ParseInt64Digits(3, 3, out actual));
ValidateCurrentCharacter(value, 1, '1');
}
示例15: CompareOrdinal_ExactMatchValueContinues
public void CompareOrdinal_ExactMatchValueContinues()
{
var value = new ValueCursor("xabc");
value.Move(1);
Assert.AreEqual(0, value.CompareOrdinal("ab"));
Assert.AreEqual(1, value.Index); // Cursor hasn't moved
}