@Test
 public void testTextareaChoiceListProvider_choiceListText() {
   // complete tests are done in TextareaStringListUtilityTest.
   String choiceListText = "a\nb\nc\n";
   TextareaChoiceListProvider target =
       new TextareaChoiceListProvider(choiceListText, null, false, null);
   assertEquals(
       "Basic test of choiceListText in TextareaChoiceListProvider()",
       Arrays.asList("a", "b", "c"),
       target.getChoiceList());
 }