testView.setDocumentText("create a 2nd Sofa");
assertTrue( this.cas.getViewName().equals("_InitialView"));
assertTrue( testView.getViewName().equals("TestView"));
this.cas.reset();
SofaID_impl id = new SofaID_impl();
id.setSofaID("TestView");
SofaFS testSofa = this.cas.createSofa(id, "text");
CAS newView = this.cas.getView(testSofa);
assertTrue( newView.getViewName().equals("TestView"));
}