We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
To Reproduce
Run UtBot via plugin on the following class
public class Test { public boolean foo(boolean b) { return !b; } }
Generated tests looks like
@Test @DisplayName("foo: return !b : False -> return !b") public void testFoo_NotB() { Test test = new Test(); boolean actual = test.foo(true); assertFalse(actual); }
Actual behavior
This code does not compile because Test as a name of the class conflicts with a name from JUnit imports org.junit.jupiter.api.Test
Test
org.junit.jupiter.api.Test
The text was updated successfully, but these errors were encountered:
EgorkaKulikov
No branches or pull requests
To Reproduce
Run UtBot via plugin on the following class
Generated tests looks like
Actual behavior
This code does not compile because
Test
as a name of the class conflicts with a name from JUnit importsorg.junit.jupiter.api.Test
The text was updated successfully, but these errors were encountered: