Skip to content
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

HBX-2742: Create Interface for ConfigurationWrapper #4687

Merged
merged 23 commits into from
Mar 7, 2024

Conversation

koentsje
Copy link
Member

@koentsje koentsje commented Mar 7, 2024

No description provided.

koentsje added 23 commits March 5, 2024 12:17
  - Create new initial test class 'org.hibernate.tool.orm.jbt.api.ConfigurationWrapperTest'
  - Create new initial interface class 'org.hibernate.tool.orm.jbt.api.ConfigurationWrapper'
  - Create new factory class 'org.hibernate.tool.orm.jbt.internal.factory.ConfigurationWrapperFactory'

Signed-off-by: Koen Aers <koen.aers@gmail.com>
  - Add new test case 'org.hibernate.tool.orm.jbt.api.ConfigurationWrapperTest#testGetProperty()'
  - Add new default interface method 'org.hibernate.tool.orm.jbt.api.ConfigurationWrapper#getProperty(String)'

Signed-off-by: Koen Aers <koen.aers@gmail.com>
  - Add new test case 'org.hibernate.tool.orm.jbt.api.ConfigurationWrapperTest#testAddFile()'
  - Add new default interface method 'org.hibernate.tool.orm.jbt.api.ConfigurationWrapper#addFile(File)'

Signed-off-by: Koen Aers <koen.aers@gmail.com>
  - Add new test case 'org.hibernate.tool.orm.jbt.api.ConfigurationWrapperTest#testSetProperty()'
  - Add new default interface method 'org.hibernate.tool.orm.jbt.api.ConfigurationWrapper#setProperty(String,String)'

Signed-off-by: Koen Aers <koen.aers@gmail.com>
  - Add new test case 'org.hibernate.tool.orm.jbt.api.ConfigurationWrapperTest#testSetProperties()'
  - Add new default interface method 'org.hibernate.tool.orm.jbt.api.ConfigurationWrapper#setProperties(Properties)'

Signed-off-by: Koen Aers <koen.aers@gmail.com>
  - Add new test case 'org.hibernate.tool.orm.jbt.api.ConfigurationWrapperTest#testSetEntityResolver()'
  - Add new default interface method 'org.hibernate.tool.orm.jbt.api.ConfigurationWrapper#setEntityResolver(EntityResolver)'

Signed-off-by: Koen Aers <koen.aers@gmail.com>
  - Add new test case 'org.hibernate.tool.orm.jbt.api.ConfigurationWrapperTest#testSetNamingStrategy()'
  - Add new default interface method 'org.hibernate.tool.orm.jbt.api.ConfigurationWrapper#setNamingStrategy(NamingStrategy)'

Signed-off-by: Koen Aers <koen.aers@gmail.com>
  - Add new test case 'org.hibernate.tool.orm.jbt.api.ConfigurationWrapperTest#testGetProperties()'
  - Add new default interface method 'org.hibernate.tool.orm.jbt.api.ConfigurationWrapper#getProperties()'

Signed-off-by: Koen Aers <koen.aers@gmail.com>
  - Add new test case 'org.hibernate.tool.orm.jbt.api.ConfigurationWrapperTest#testAddProperties()'
  - Add new default interface method 'org.hibernate.tool.orm.jbt.api.ConfigurationWrapper#addProperties(Properties)'

Signed-off-by: Koen Aers <koen.aers@gmail.com>
  - Add new test case 'org.hibernate.tool.orm.jbt.api.ConfigurationWrapperTest#testConfigureDocument()'
  - Add new default interface method 'org.hibernate.tool.orm.jbt.api.ConfigurationWrapper#configure(Document)'

Signed-off-by: Koen Aers <koen.aers@gmail.com>
  - Add new test case 'org.hibernate.tool.orm.jbt.api.ConfigurationWrapperTest#testConfigureFile()'
  - Add new default interface method 'org.hibernate.tool.orm.jbt.api.ConfigurationWrapper#configure(File)'

Signed-off-by: Koen Aers <koen.aers@gmail.com>
  - Add new test case 'org.hibernate.tool.orm.jbt.api.ConfigurationWrapperTest#testConfigureDefault()'
  - Add new default interface method 'org.hibernate.tool.orm.jbt.api.ConfigurationWrapper#configure()'

Signed-off-by: Koen Aers <koen.aers@gmail.com>
  - Add new test case 'org.hibernate.tool.orm.jbt.api.ConfigurationWrapperTest#testAddClass()'
  - Add new default interface method 'org.hibernate.tool.orm.jbt.api.ConfigurationWrapper#addClass(Class<?>)'

Signed-off-by: Koen Aers <koen.aers@gmail.com>
  - Add new test case 'org.hibernate.tool.orm.jbt.api.ConfigurationWrapperTest#testBuildMappings()'
  - Add new default interface method 'org.hibernate.tool.orm.jbt.api.ConfigurationWrapper#buildMappings()'

Signed-off-by: Koen Aers <koen.aers@gmail.com>
  - Add new test case 'org.hibernate.tool.orm.jbt.api.ConfigurationWrapperTest#testBuildSessionFactory()'
  - Add new default interface method 'org.hibernate.tool.orm.jbt.api.ConfigurationWrapper#buildSessionFactory()'

Signed-off-by: Koen Aers <koen.aers@gmail.com>
  - Add new test case 'org.hibernate.tool.orm.jbt.api.ConfigurationWrapperTest#testGetClassMappings()'
  - Add new default interface method 'org.hibernate.tool.orm.jbt.api.ConfigurationWrapper#getClassMappings()'

Signed-off-by: Koen Aers <koen.aers@gmail.com>
  - Add new test case 'org.hibernate.tool.orm.jbt.api.ConfigurationWrapperTest#testSetPreferBasicCompositeIds()'
  - Add new default interface method 'org.hibernate.tool.orm.jbt.api.ConfigurationWrapper#setPreferBasicCompositeIds(boolean)'

Signed-off-by: Koen Aers <koen.aers@gmail.com>
  - Add new test case 'org.hibernate.tool.orm.jbt.api.ConfigurationWrapperTest#testSetReverseEngineeringStrategy()'
  - Add new default interface method 'org.hibernate.tool.orm.jbt.api.ConfigurationWrapper#setReverseEngineeringStrategy(RevengStrategy)'

Signed-off-by: Koen Aers <koen.aers@gmail.com>
  - Add new test case 'org.hibernate.tool.orm.jbt.api.ConfigurationWrapperTest#testReadFromJDBC()'
  - Add new default interface method 'org.hibernate.tool.orm.jbt.api.ConfigurationWrapper#readFromJDBC()'

Signed-off-by: Koen Aers <koen.aers@gmail.com>
  - Add new test case 'org.hibernate.tool.orm.jbt.api.ConfigurationWrapperTest#testGetClassMapping()'
  - Add new default interface method 'org.hibernate.tool.orm.jbt.api.ConfigurationWrapper#getClassMapping(String)'

Signed-off-by: Koen Aers <koen.aers@gmail.com>
  - Add new test case 'org.hibernate.tool.orm.jbt.api.ConfigurationWrapperTest#testGetNamingStrategy()'
  - Add new default interface method 'org.hibernate.tool.orm.jbt.api.ConfigurationWrapper#getNamingStrategy()'

Signed-off-by: Koen Aers <koen.aers@gmail.com>
  - Add new test case 'org.hibernate.tool.orm.jbt.api.ConfigurationWrapperTest#testGetNamingStrategy()'
  - Add new default interface method 'org.hibernate.tool.orm.jbt.api.ConfigurationWrapper#getNamingStrategy()'

Signed-off-by: Koen Aers <koen.aers@gmail.com>
  - Add new test case 'org.hibernate.tool.orm.jbt.api.ConfigurationWrapperTest#testGetNamingStrategy()'
  - Add new default interface method 'org.hibernate.tool.orm.jbt.api.ConfigurationWrapper#getNamingStrategy()'

Signed-off-by: Koen Aers <koen.aers@gmail.com>
@koentsje koentsje merged commit d3ffed6 into hibernate:main Mar 7, 2024
3 checks passed
@koentsje koentsje deleted the HBX-2742 branch March 7, 2024 15:02
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant