| 9 | { |
| 10 | public: |
| 11 | static SimulationParameters getParameters() |
| 12 | { |
| 13 | SimulationParameters result; |
| 14 | result.innerFriction = 0; |
| 15 | result.baseValues.friction = 0; |
| 16 | for (int i = 0; i < MAX_COLORS; ++i) { |
| 17 | result.baseValues.radiationCellAgeStrength[i] = 0; |
| 18 | } |
| 19 | return result; |
| 20 | } |
| 21 | SensorTests() |
| 22 | : IntegrationTestFramework(getParameters()) |
| 23 | {} |
nothing calls this directly
no outgoing calls
no test coverage detected