Added two simple tests for the table model.
This commit is contained in:
34
tests/GenericCoreTests/model_test.cpp
Normal file
34
tests/GenericCoreTests/model_test.cpp
Normal file
@ -0,0 +1,34 @@
|
||||
#include <gtest/gtest.h>
|
||||
|
||||
#include <QString>
|
||||
|
||||
#include <QtGui/QUndoCommand>
|
||||
|
||||
#include "../../libs/BeetRoundCore/model/tablemodel.h"
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
inline void PrintTo(const QString& qString, ::std::ostream* os) { *os << qUtf8Printable(qString); }
|
||||
QT_END_NAMESPACE
|
||||
|
||||
struct ModelTest : testing::Test {
|
||||
std::shared_ptr<TableModel> model;
|
||||
|
||||
ModelTest() { model = make_shared<TableModel>(new QUndoStack()); }
|
||||
|
||||
~ModelTest() {}
|
||||
};
|
||||
|
||||
TEST_F(ModelTest, TestRowCount) {
|
||||
const int expectedRowCount = 0;
|
||||
|
||||
const auto actualRowCount = model->rowCount();
|
||||
|
||||
ASSERT_EQ(expectedRowCount, actualRowCount);
|
||||
}
|
||||
|
||||
TEST_F(ModelTest, TestBidding1Average) {
|
||||
const int expected = 0;
|
||||
const auto actualBidding1Average = model->biddingAverage1();
|
||||
|
||||
ASSERT_EQ(expected, actualBidding1Average);
|
||||
}
|
||||
Reference in New Issue
Block a user