Example #1
0
    [Test] public void Prefix()
    {
        var t = new T("SetPos", next: null, reason: null);

        t.Prefix('!');
        o(F.LogTrace(t), "!SetPos");
        t.Prefix('+');
        o(F.LogTrace(t), "+!SetPos");
    }