public static void testCommitteeVotes(Environment env, File sobiDirectory, Storage storage,
String meetingKey, String billName, String committeeVoteSobi, Vote expected)
{
File[] voteSobiFile = TestHelper.getFilesByName(sobiDirectory, committeeVoteSobi);
TestHelper.processFile(env, voteSobiFile);
Meeting meeting = TestHelper.getMeeting(storage, meetingKey);
List<Bill> bills = meeting.getBills();
Bill bill = TestHelper.getBillByName(bills, billName);
Vote testVote = bill.getVotes().get(0);
assertThat(testVote.getAyes(), is(expected.getAyes()));
assertThat(testVote.getAyeswr(), is(expected.getAyeswr()));
assertThat(testVote.getAbsent(), is(expected.getAbsent()));