• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package com.xtremelabs.robolectric.util;
2 
3 import java.util.List;
4 
5 import static org.hamcrest.CoreMatchers.instanceOf;
6 import static org.junit.Assert.assertThat;
7 
8 public class SQLiteTestHelper {
9 
verifyColumnValues(List<Object> colValues)10     static void verifyColumnValues(List<Object> colValues) {
11         assertThat(colValues.get(0), instanceOf(Float.class));
12         assertThat(colValues.get(1), instanceOf(byte[].class));
13         assertThat(colValues.get(2), instanceOf(String.class));
14         assertThat(colValues.get(3), instanceOf(Integer.class));
15     }
16 
17 }
18