30 lines
393 B
Groovy
30 lines
393 B
Groovy
package unit.groovy.pricing
|
|
|
|
import spock.lang.Specification
|
|
|
|
class BtcPriceServiceTest extends Specification {
|
|
void setup() {
|
|
}
|
|
|
|
void cleanup() {
|
|
}
|
|
|
|
def "CreateBtc"() {
|
|
}
|
|
|
|
def "GetAllPrices"() {
|
|
}
|
|
|
|
def "GetPricesBetweenCounts"() {
|
|
}
|
|
|
|
def "GetLatest"() {
|
|
}
|
|
|
|
def "GetPriceForCreatedDate"() {
|
|
}
|
|
|
|
def "GetPriceBetweenDates"() {
|
|
}
|
|
}
|