1 package civitas.common.tabteller.tests;
2
3 import civitas.common.electionresults.tests.TellerTestData;
4 import civitas.common.tabteller.TabTellerKeyShare;
5
6 public interface TabTellerKeyShareTestData extends TellerTestData {
7 TabTellerKeyShare TAB_TELLER_KEY_SHARE = new TabTellerKeyShare(TELLER_INDEX);
8 String TAB_TELLER_KEY_SHARE_XML = "<TabTellerKeyShare><tellerIndex>7</tellerIndex></TabTellerKeyShare>";
9 byte[] TAB_TELLER_KEY_SHARE_HASH = "ttkshare hash".getBytes();
10 }