issues
search
TycjanLamkiewicz
/
Programowanie-wspolbiezne
A computer programme with a multi-layer architecture and functionality to observe the behaviour of spheres on a rectangular plane bounded by sidewalls.
1
stars
0
forks
source link
Stage 2 - students' version
#5
Closed
TycjanLamkiewicz
closed
6 months ago
TycjanLamkiewicz
commented
7 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)
[x] Mock may be used for testing purposes (expected but not required)
TycjanLamkiewicz
commented
6 months ago
Stage 2 completed
Logic
uses only the abstractData
layer API