same(1l, scr);
same(new ServiceReferenceDTO(), scr);
same( new String[] {"foo", "bar"}, scr);
same( new Boolean[] {true, false}, scr);
same( new Long[] {1l, 2l}, scr);
same( new DTO[] {new ServiceReferenceDTO(), new BundleDTO()}, scr);
equalsToString(new int[] {1, 2}, scr);
equalsToString(Arrays.asList(new int[] {1, 2}), scr);
equalsToString(Arrays.asList(new String[] {"foo", "bar"}), scr);
}