mirror of https://github.com/status-im/qzxing.git
Added class ReedSolomonEncoderTests
This commit is contained in:
parent
2db02dffee
commit
55c2e7547d
|
@ -0,0 +1,17 @@
|
|||
#include "ReedSolomonEncoderTests.h"
|
||||
|
||||
namespace zxing{
|
||||
namespace tests{
|
||||
|
||||
ReedSolomonEncoderTests::ReedSolomonEncoderTests()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
void ReedSolomonEncoderTests::execute()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
}
|
|
@ -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
|
Loading…
Reference in New Issue