All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.tototoshi.fixture.FixtureScript.scala Maven / Gradle / Ivy

There is a newer version: 0.4.1
Show newest version
package com.github.tototoshi.fixture

import java.sql.Connection

trait FixtureScript {

  val name: String = this.getClass.getName

  def setUp(connection: Connection): Unit

  def tearDown(connection: Connection): Unit

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy