Commented Test

Definition:

  • Test contents are commented so that it passes

Code Example:

class SystemAdminSmokeTest extends GroovyTestCase {
  void testSmoke() {
    // do not remove below code
    // def ds = new org.h2.jdbcx.JdbcDataSource(
    // URL: 'jdbc:h2:mem:test;DB_CLOSE_DELAY=-1;MODE=Oracle',
    // user: 'sa', password: '')
    //
    // def jpaProperties = new Properties()
    // jpaProperties.setProperty(
    // 'hibernate.cache.use_second_level_cache', 'false')
    // jpaProperties.setProperty(
    // 'hibernate.cache.use_query_cache', 'false')
    //
    // def emf = new LocalContainerEntityManagerFactoryBean(
    // dataSource: ds, persistenceUnitName: 'my-domain',
    // jpaVendorAdapter: new HibernateJpaVendorAdapter(
    // database: Database.H2, showSql: true,
    // generateDdl: true), jpaProperties: jpaProperties)
    ...
  }
}

References:

Quality attributes

  • - Code Example

  • - Cause and Effect

  • - Frequency

  • - Refactoring