|
1 |
| -package pl.com.dddbyexamples.factory.integration |
| 1 | +package io.dddbyexamples.factory.integration |
2 | 2 |
|
3 | 3 | import org.springframework.beans.factory.annotation.Autowired
|
4 | 4 | import org.springframework.boot.test.context.SpringBootTest
|
5 | 5 | import org.springframework.boot.test.web.client.TestRestTemplate
|
6 | 6 | import org.springframework.context.annotation.Bean
|
7 | 7 | import org.springframework.context.annotation.Configuration
|
8 |
| -import org.springframework.context.annotation.Primary |
9 | 8 | import org.springframework.core.ParameterizedTypeReference
|
10 | 9 | import org.springframework.hateoas.Resource
|
11 |
| -import org.springframework.hateoas.Resources |
12 | 10 | import org.springframework.http.HttpMethod
|
13 | 11 | import org.springframework.http.ResponseEntity
|
14 |
| -import pl.com.dddbyexamples.factory.AppConfiguration |
15 |
| -import pl.com.dddbyexamples.factory.ProductTrait |
16 |
| -import pl.com.dddbyexamples.factory.demand.forecasting.Adjustment |
17 |
| -import pl.com.dddbyexamples.factory.demand.forecasting.Demand |
18 |
| -import pl.com.dddbyexamples.factory.demand.forecasting.command.DemandAdjustmentEntity |
19 |
| -import pl.com.dddbyexamples.factory.demand.forecasting.persistence.DocumentEntity |
20 |
| -import pl.com.dddbyexamples.factory.demand.forecasting.projection.CurrentDemandEntity |
21 |
| -import pl.com.dddbyexamples.factory.product.management.ProductDescriptionEntity |
22 |
| -import pl.com.dddbyexamples.factory.shortages.prediction.calculation.Stock |
23 |
| -import pl.com.dddbyexamples.factory.shortages.prediction.monitoring.persistence.ShortagesEntity |
24 |
| -import pl.com.dddbyexamples.factory.warehouse.WarehouseService |
25 |
| -import pl.com.dddbyexamples.tools.IntegrationTest |
| 12 | +import io.dddbyexamples.factory.AppConfiguration |
| 13 | +import io.dddbyexamples.factory.ProductTrait |
| 14 | +import io.dddbyexamples.factory.demand.forecasting.Adjustment |
| 15 | +import io.dddbyexamples.factory.demand.forecasting.Demand |
| 16 | +import io.dddbyexamples.factory.demand.forecasting.command.DemandAdjustmentEntity |
| 17 | +import io.dddbyexamples.factory.demand.forecasting.persistence.DocumentEntity |
| 18 | +import io.dddbyexamples.factory.product.management.ProductDescriptionEntity |
| 19 | +import io.dddbyexamples.factory.shortages.prediction.calculation.Stock |
| 20 | +import io.dddbyexamples.factory.shortages.prediction.monitoring.persistence.ShortagesEntity |
| 21 | +import io.dddbyexamples.factory.warehouse.WarehouseService |
| 22 | +import io.dddbyexamples.tools.IntegrationTest |
26 | 23 | import spock.lang.Specification
|
27 | 24 |
|
28 | 25 | import java.time.Clock
|
29 | 26 | import java.time.LocalDate
|
30 |
| -import java.time.ZoneId |
31 | 27 |
|
32 | 28 | import static java.time.Instant.from
|
33 | 29 | import static java.time.ZoneId.systemDefault
|
|
0 commit comments