Skip to content

Asserts are missing for anonymous class #1034

Open
@alisevych

Description

@alisevych

Description

If a method returns an anonymous class, the generated test method contains actual and expected, but doesn't assert them to be equal.

To Reproduce

  1. Run a project in IntelliJ Idea 2022.1.4 with one of the latest plugin builds from main branch
  2. Add the following code:
public class A {

    public interface Driver {
        public int getNumber(int n);
    }

    public Driver getDriver() {
        return new Driver() {
            @Override
            public int getNumber(int n) {
                return 2 * n - 1 ;
            }
        };
    }
}
  1. Use plugin to generate tests for getDriver() method.
  2. Open the generated test

Expected behavior

Test is supposed to contain assert of expected and actual value.

Actual behavior

Test contains actual and expected fields, but there is no assertion.

Visual proofs (screenshots, logs, images)

import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.DisplayName;

import static org.utbot.runtime.utils.UtUtils.createInstance;
import static org.utbot.runtime.utils.UtUtils.setField;

public class ATest {
    ///region Test suites for executable A.getDriver

    ///region FUZZER: SUCCESSFUL EXECUTIONS for method getDriver()

    @Test
    @DisplayName("getDriver: arg_0 = A()")
    public void testGetDriver() throws Exception {
        A a = new A();

        A.Driver actual = a.getDriver();

        A.Driver expected = ((A.Driver) createInstance("A$1"));
        setField(expected, "A$1", "this$0", a);
    }
    ///endregion

    ///endregion
}

Environment

Windows 10 Pro
JDK 8

Additional context

The same issue can be seen for generating tests for the following code:

public class A {

    public int a, b = 10;

    public List<Integer> integerStream (int c) {
        return Arrays.asList(a, b, c);
    }
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    comp-codegenIssue is related to code generatorctg-bugIssue is a bug

    Type

    No type

    Projects

    Status

    Todo

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions