http://18delphi.blogspot.com/2015/02/what-else-i-want-to-tell-about-tddnot.html

http://18delphi.blogspot.com/2015/02/what-else-i-want-to-tell-about-tddnot.html

Comments

  1. Александр Люлин  Stefan is one of the well-known Delphi experts, including on unit testing - he's the author of TestInsight, for example. I think what he was saying at the end there was that most books and articles about software practices, including unit testing, are for other languages such as C#. So it's not possible to give the same links for Delphi. You can have to read the blogs about C# and use the techniques in Delphi yourself.

    ReplyDelete
  2. "You can have to read the blogs about C# and use the techniques in Delphi yourself."

    Great thanks for your permission. It's very valuable for a man who wrote some million code-lines himself. And about five thousands tests. Thank you a lot ;-)

    ReplyDelete
  3. http://blog.ploeh.dk/2013/03/08/test-trivial-code/

    [Fact]
    public void GetYearReturnsAssignedValue()
    {
        var sut = new DateViewModel();
        sut.Year = 2013;
        Assert.Equal(2013, sut.Year);
    }

    And where is SetUp or TearDown?

    ReplyDelete

Post a Comment