assertEquals, what is actual and what is expected?

2019-06-16 06:32发布

I always wondered what exactly is the meaning of actual and expected in assertEquals in libraries like TestNG.

If we read the Java Docs we see:

public static void assertEquals(... actual, ... expected)
Parameters:
    actual - the actual value
    expected - the expected value

From my understanding the expected value is the known one, so the one we expect, and the actual one is the one we want to verify. For example, assume we want to test a function fooBar that always has to return 56.

In such a case I would do: assertEquals(sth.fooBar(), 56). But with a quick search on GitHub it seems people do it the other way around, so assertEquals(56, sth.fooBar()). But how can the expected value be sth.fooBar() when we don't even know that value? It seems that sth.fooBar() is the actual value which we compare against the expected which we already know.

I know there is no difference of the correctness of a test but I would like to follow the "correct" way.

4条回答
\"骚年 ilove
2楼-- · 2019-06-16 06:51

Answer is simple. JUnit has reverse order of arguments. Refer the example below:

JUnit:

void assertEquals(Object expected, Object actual)

TestNG:

void assertEquals(int actual, int expected)

查看更多
Root(大扎)
3楼-- · 2019-06-16 06:52

I too had the same confusion.

But the confusion is because the Github search returns the assertEquals syntax for both TestNG and junit. You are correct with your expected & actual understanding.

TestNG: assertEquals(Object actual, Object expected)

junit: assertEquals(Object expected, Object actual)

Eg., in testNG result of below code

int x=1+2; assertEquals(x,2);

is:

java.lang.AssertionError: expected [2] but found [3]
Expected :2
Actual   :3
查看更多
等我变得足够好
4楼-- · 2019-06-16 07:03

Most testing frameworks (the xUnit family) are based on the JUnit framework. The Assert family of functions in JUnit have the (expected, actual) format; it became a convention, and most of the other frameworks followed that convention.

Some frameworks (like TestNG or NUnit 2.4+ for .NET) reversed that order (with the use of a constraint-based model for NUnit) to increase readability ("make sure that the actual value is 56" feels more natural than "make sure that 56 is the actual value").

The bottom line is: stick to the convention of your framework. If you use JUnit, put the expected value first. If you use TestNG, put the actual value first. You're right, that makes no difference in the test results when you accidentally reverse the arguments. But it makes a big difference in the default message you get from a failing test. When your reversed assertEquals(ShouldBeTrueButReturnsFalse(), true) in JUnit fails, the default message says "expected [false] but found [true]", where it should have said "expected [true] but found [false]". This is confusing, to say the least, and you shouldn't have to deal with a possible misdirection of that message.

Some of the unit tests in the Github link you provide don't follow the convention and have the same problem. Don't do that. Stick to the convention of your framework.

查看更多
smile是对你的礼貌
5楼-- · 2019-06-16 07:11

You can use:

String expectedTitles[] = {"value-1", "value-2", "value-3". "value-14")};
List<String> expectedTitlesList = Arrays.asList(expectedTitles);
Assert.assertTrue(expectedTitlesList.contains(("value-to-compare")));

with maven:

<!-- https://mvnrepository.com/artifact/junit/junit -->
<dependency>
    <groupId>junit</groupId>
    <artifactId>junit</artifactId>
    <version>4.4</version>
</dependency>

<!-- https://mvnrepository.com/artifact/org.hamcrest/hamcrest-all -->
<dependency>
    <groupId>org.hamcrest</groupId>
    <artifactId>hamcrest-all</artifactId>
    <version>1.3</version>
</dependency>
查看更多
登录 后发表回答