Added class ReedSolomonEncoderTests

This commit is contained in:
favoritas37 2016-08-01 19:37:11 +03:00
parent 2db02dffee
commit 55c2e7547d
2 changed files with 43 additions and 0 deletions

View File

@ -0,0 +1,17 @@
#include "ReedSolomonEncoderTests.h"
namespace zxing{
namespace tests{
ReedSolomonEncoderTests::ReedSolomonEncoderTests()
{
}
void ReedSolomonEncoderTests::execute()
{
}
}
}

View File

@ -0,0 +1,26 @@
#ifndef REEDSOLOMONENCODERTESTS_H
#define REEDSOLOMONENCODERTESTS_H
#include "TestCase.h"
#include "zxing/common/reedsolomon/ReedSolomonEncoder.h"
namespace zxing{
namespace tests{
class ReedSolomonEncoderTests : public TestCase
{
public:
ReedSolomonEncoderTests();
void execute();
protected:
// const std::vector<byte>& dataBytes
// void testEncoder(Ref<GenericGF> field, int[] dataWords, int[] ecWords);
};
}
}
#endif // REEDSOLOMONENCODERTESTS_H