ESGRAF48/source/SubTests/AkkusativDativ/DativModel.cpp

16 lines
479 B
C++
Raw Normal View History

2018-06-16 15:54:27 +00:00
#include "DativModel.h"
DativModel::DativModel(QObject *parent)
: CheckableTestModel(parent)
{
m_tests = {
{ "Dativ Nominalphrase", { "Tiger", "Katze", "Affe", "Gans", "Bär",
"Pferd", "Hund", "Elefant" } },
{ "Präpositionalphrase (Verstecke)",
{ "Vorhang", "Kiste", "Holz", "Kiste", "Baum", "Vorhang", "Holz",
"Baum" } },
{ "Nominalphrase (Tiere)", { "Salat", "Fleisch", "Knochen", "Banane",
"Apfel", "Karotte", "Honig", "Zucker" } }
2018-06-16 15:54:27 +00:00
};
}