Ejemplo n.º 1
0
    public void should_not_be_equal_to_other_unit_patterns()
    {
        // --arrange
        var target1 = new IsServiceUnit();
        var target2 = new Util.OtherUnitPattern();

        // --assert
        target1.Equals(target2).Should().BeFalse();
        target2.Equals(target1).Should().BeFalse();
    }
Ejemplo n.º 2
0
    public void all_instances_should_be_equal()
    {
        // --arrange
        var target1 = new IsServiceUnit();
        var target2 = new IsServiceUnit();

        // --assert
        target1.Equals(target2).Should().BeTrue();
        target2.Equals(target1).Should().BeTrue();
    }
Ejemplo n.º 3
0
    public void should_match_any_kind(
        [Values(null, "kind", typeof(string))]                     object?kind,
        [ValueSource(typeof(Util), nameof(Util.all_special_tags))] SpecialTag tag)
    {
        // --arrange
        var unitId = new UnitId(kind, tag);
        var target = new IsServiceUnit();

        // --assert
        target.Matches(unitId).Should().BeTrue();
    }
Ejemplo n.º 4
0
    public void should_not_match_any_kind_if_tag_is_not_special(
        [Values(null, "kind", typeof(string))] object?kind,
        [Values(null, "tag")]                  object?tag)
    {
        if (kind is null && tag is null)
        {
            Assert.Ignore("Impossible argument combination");
        }

        // --arrange
        var unitId = new UnitId(kind, tag);
        var target = new IsServiceUnit();

        // --assert
        target.Matches(unitId).Should().BeFalse();
    }