add channel enabled status to fee configuration

This commit is contained in:
Carsten Otto
2021-11-28 12:04:05 +01:00
parent d6e16fb8f0
commit 7c64fe172b
11 changed files with 141 additions and 12 deletions

View File

@@ -8,7 +8,14 @@ import static org.assertj.core.api.Assertions.assertThat;
class FeeConfigurationDtoTest {
@Test
void createFrom() {
FeeConfigurationDto expected = new FeeConfigurationDto(1, 2, 3, 4);
FeeConfigurationDto expected = new FeeConfigurationDto(
1,
2,
3,
4,
false,
true
);
FeeConfigurationDto dto = FeeConfigurationDto.createFrom(FEE_CONFIGURATION);