DEV Community

Simon Foster
Simon Foster

Posted on • Originally published at funkysi1701.com on

Writing your first test

Whenever I write a new test I have to think how best to do it. Hopefully I can summarise a few tips here to help get started.

Arrange Act Assert

The first thing I think about when writing a test is Arrange, Act, Assert. Arrange, Act, Assert is a pattern for writing the tests.

Arrange – This gets things in order ready to execute the test.

Act – This executes the method you want to test.

Assert – This compares the value produced in the Act step with a known value typically with a method similar to the following

Assert.AreEqual(expected value, actual value)

Say for example you wanted to test a method called ReturnsTrue() which does nothing but returns a value of true. This method is in a class called ReturnsTrueClass

The Arrange step in this example would be.

ReturnsTrueClass t = new ReturnsTrueClass();

The Act step in this example would be.

var result = t.ReturnTrue();

The Assert step in this example would be.

Assert.AreEqual(true, result);

This is a stupidly simple example but hopefully you get the idea of how you can build all your tests with these three steps.

Recently I saw a tweet complaining that someone has mixed up expected and actual in the Assert statement.

There is a minor but special hell reserved for those who mix up the expected and actual parameters in Assert.Equals

— Keith Williams (@zogface) July 5, 2017

At first glance this probably isn’t the worst mistake to make as if your tests are all passing actual and expected are the same.

However tests will fail, that is the whole point of them, you can then fix bits of code. If you have mixed up actual and expected it adds extra time to debugging and figuring out what values are produced from your code and what you are expecting it to produce. It may be your test uses a mocking framework and somewhere in there, there is an issue, with mixed up expected/actual you may assume a problem in your code rather than the test.

Also, how do you make such an error? When I type Assert.AreEquals() in Visual Studio, Visual Studio tells me what each parameter does, it takes a matter of seconds to do this, just by hovering over the code.

One last tip to say about tests. Write your tests to test the behaviour of your application.

The post Writing your first test appeared first on Funky Si's Tech Talk.

Top comments (0)