xlnt/source/tests/PasswordHashTestSuite.h

28 lines
478 B
C
Raw Normal View History

2014-05-09 03:32:12 +08:00
#pragma once
#include <iostream>
#include <cxxtest/TestSuite.h>
2014-05-10 03:54:06 +08:00
#include "../xlnt.h"
2014-05-09 03:32:12 +08:00
class PasswordHashTestSuite : public CxxTest::TestSuite
{
public:
PasswordHashTestSuite()
{
}
void test_hasher()
{
//TS_ASSERT_EQUALS("CBEB", hash_password("test"));
}
void test_sheet_protection()
{
//protection = SheetProtection();
//protection.password = "test";
//TS_ASSERT_EQUALS("CBEB", protection.password);
}
};