Exemplo n.º 1
0
 @Test
 public void testGetSetDescription()
     throws FOMException, JSONException, FluidException, IOException {
   // We'll make use of the user's default root namespace (defined by their username)
   Namespace testNamespace = new Namespace(this.fdb, "", this.fdb.getUsername());
   // Lets set the description
   testNamespace.setDescription("This is a test description");
   assertEquals("This is a test description", testNamespace.getDescription());
   // Lets get the same description from a newly instantiated object referencing the same
   // namespace so the description gets automagically pulled from FluidDB
   Namespace testNamespace2 = new Namespace(this.fdb, "", this.fdb.getUsername());
   assertEquals("This is a test description", testNamespace2.getDescription());
 }