-
-
Notifications
You must be signed in to change notification settings - Fork 3.7k
HHH-19846 - Drop JUnit 4 usage #11102
New issue
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
base: main
Are you sure you want to change the base?
Conversation
} | ||
|
||
public Set getEnrollments() { | ||
public Set<Enrollment> getEnrollments() { |
Check notice
Code scanning / CodeQL
Exposing internal representation Note test
after this call to getEnrollments
Cannot convert... * org.hibernate.orm.test.hql.PostgreSQLFunctionSelectClauseTest - registering custom function * org.hibernate.orm.test.hql.PostgreSQLFunctionWhereClauseTest - aux-db-object
var companyId = factoryScope.fromTransaction( (session) -> { | ||
Flight firstOne = new Flight(); | ||
firstOne.setId(1L); | ||
firstOne.setName( "AF0101" ); | ||
firstOne.setDuration(1000L); | ||
Company frenchOne = new Company(); | ||
frenchOne.setName( "Air France" ); | ||
firstOne.setCompany( frenchOne ); | ||
|
||
session.persist( firstOne ); | ||
session.persist( frenchOne ); | ||
|
||
return frenchOne.getId(); | ||
} ); |
Check notice
Code scanning / CodeQL
Unread local variable Note test
final EntityPersister entityDescriptor = sessionFactory | ||
.getMappingMetamodel() | ||
.getEntityDescriptor( entityClass ); |
Check notice
Code scanning / CodeQL
Unread local variable Note test
hibernate-core/src/test/java/org/hibernate/orm/test/hql/BulkManipulationTest.java
Dismissed
Show dismissed
Hide dismissed
hibernate-core/src/test/java/org/hibernate/orm/test/hql/BulkManipulationTest.java
Dismissed
Show dismissed
Hide dismissed
hibernate-core/src/test/java/org/hibernate/orm/test/hql/BulkManipulationTest.java
Dismissed
Show dismissed
Hide dismissed
hibernate-core/src/test/java/org/hibernate/orm/test/hql/BulkManipulationTest.java
Dismissed
Show dismissed
Hide dismissed
hibernate-core/src/test/java/org/hibernate/orm/test/hql/BulkManipulationTest.java
Dismissed
Show dismissed
Hide dismissed
hibernate-core/src/test/java/org/hibernate/orm/test/hql/BulkManipulationTest.java
Dismissed
Show dismissed
Hide dismissed
hibernate-core/src/test/java/org/hibernate/orm/test/hql/BulkManipulationTest.java
Dismissed
Show dismissed
Hide dismissed
hibernate-core/src/test/java/org/hibernate/orm/test/ternary/Employee.java
Dismissed
Show dismissed
Hide dismissed
Cannot convert... * org.hibernate.orm.test.hql.PostgreSQLFunctionSelectClauseTest - registering custom function * org.hibernate.orm.test.hql.PostgreSQLFunctionWhereClauseTest - aux-db-object
Dropping usage of JUnit 4
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license
and can be relicensed under the terms of the LGPL v2.1 license in the future at the maintainers' discretion.
For more information on licensing, please check here.
https://hibernate.atlassian.net/browse/HHH-19846