Revert "[apps/hardware_test] Remove POST from hardware tests"

This reverts commit d103cd0919.
This tests are needed to block the production if they fail
This commit is contained in:
Léa Saviot
2019-04-26 11:35:16 +02:00
parent 30a1a1f0eb
commit 204be4e7a3
9 changed files with 451 additions and 1 deletions

View File

@@ -20,11 +20,14 @@ App::App(Container * container, Snapshot * snapshot) :
App::WizardViewController::WizardViewController(Responder * parentResponder) :
BankViewController(parentResponder),
m_batteryTestController(this),
m_centeredScreenTestController(this),
m_deadPixelsTestController(this),
m_keyboardController(this),
m_lcdDataTestController(this),
m_ledTestController(this),
m_serialNumberController(this)
m_serialNumberController(this),
m_vBlankTestController(this)
{
}
@@ -34,10 +37,13 @@ int App::WizardViewController::numberOfChildren() {
ViewController * App::WizardViewController::childAtIndex(int i) {
ViewController * children[] = {
&m_vBlankTestController,
&m_lcdDataTestController,
&m_centeredScreenTestController,
&m_deadPixelsTestController,
&m_ledTestController,
&m_keyboardController,
&m_batteryTestController,
&m_serialNumberController
};
return children[i];