generated from hmcts/spring-boot-template
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Dmp 3821 - Test framework including reenablement for arm - Part 1 (#2021
- Loading branch information
1 parent
d021403
commit 8c0e575
Showing
178 changed files
with
4,054 additions
and
1,903 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
@startuml | ||
interface BuilderHolder { | ||
Entity build() | ||
Object getBuilder() | ||
} | ||
|
||
interface Persistable { | ||
BuilderHolder someMaximal() | ||
BuilderHolder someMinimal() | ||
} | ||
|
||
interface DbInsertable { | ||
Entity getEntity() | ||
} | ||
|
||
class MediaEntityTestData implements Persistable { | ||
BuilderHolder someMaximal() | ||
someMinimal() | ||
} | ||
|
||
class MediaEntityBuilder extends MediaEntity implements DbInsertable { | ||
Entity getEntity() | ||
} | ||
|
||
class MediaEntityBuilderHolder implements BuilderHolder<Builder, Entity> { | ||
Entity build() | ||
Builder getBuilder() | ||
} | ||
|
||
MediaEntityTestData -> MediaEntityBuilderHolder : create | ||
MediaEntityBuilderHolder -> MediaEntityBuilder : create | ||
|
||
class DartsPersistance { | ||
save(MediaEntity media) | ||
} | ||
|
||
class PersistableFactory { | ||
MediaTestData getMediaTestData() | ||
} | ||
|
||
PersistableFactory -> MediaEntityTestData : create | ||
@enduml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.