issues
search
kjasamil
/
ConcurrentProgramming
0
stars
1
forks
source link
Etap 2 Checklista dla autorów repozytorium
#5
Closed
kjasamil
closed
6 months ago
kjasamil
commented
6 months ago
[x]
Starting point
[x] text is in C#
[x] all UT are green
[x] the program behaves as expected (intermediate approval test)
[x]
Data Layer
[x] responsibility of this layer is to represent boundaries of the movement rectangle and balls
[x] balls representation are independent and self-contained (no timer required)
[x] balls implementation uses concurrent programming
[x]
Logic Layer
[x] responsibility of this layer is to manage movement rectangle boundaries and balls interaction (collisions)
[x] prove that the protection of data integration is implemented
[x]
Logic
uses only the abstract
Data
layer API
[x]
Presentation Layer (MVVM)
[x] responsibility of this layer is to manage the graphical user interface (GUI)
[x] user => GUI interoperability must be implemented using interactive programming only
[x] GUI => the user interoperability must be implemented using reactive programming only (timer is not allowed)
[x] interoperability of the GUI and underlying layers must be synchronized
[x] Fulfill functional requirements of the task
[x]
Testing
[x] Unit Test - layers are tested independently using dependency injection (additional framework is not required)
[ ] Mock may be used for testing purposes (expected but not required)
Logic
uses only the abstractData
layer API