@Test
  public void testImportSimpleCf() throws IOException, ParseException {
    // Import JSON to temp SSTable file
    String jsonUrl = getClass().getClassLoader().getResource("SimpleCF.json").getPath();
    File tempSS = tempSSTableFile("Keyspace1", "Standard1");
    SSTableImport.importJson(jsonUrl, "Keyspace1", "Standard1", tempSS.getPath());

    // Verify results
    SSTableReader reader =
        SSTableReader.open(tempSS.getPath(), DatabaseDescriptor.getPartitioner());
    QueryFilter qf =
        QueryFilter.getNamesFilter(
            "rowA", new QueryPath("Standard1", null, null), "colAA".getBytes());
    ColumnFamily cf = qf.getSSTableColumnIterator(reader).getColumnFamily();
    assert Arrays.equals(cf.getColumn("colAA".getBytes()).value(), hexToBytes("76616c4141"));
  }