Package com.socrata.model.importer

Examples of com.socrata.model.importer.Grant



    @Test
    public void testNoUserId() throws IOException
    {
        Grant grant =  mapper.readValue(NO_USER_ID, Grant.class);
        TestCase.assertNotNull(grant);
        TestCase.assertNull(grant.getUserId());

        TestCase.assertEquals("willpugh@gmail.com", grant.getUserEmail());
        TestCase.assertEquals("viewer", grant.getType());
    }
View Full Code Here


    }

    @Test
    public void testNoUserEmail() throws IOException
    {
        Grant grant =  mapper.readValue(NO_USER_EMAIL, Grant.class);
        TestCase.assertNotNull(grant);
        TestCase.assertNull(grant.getUserEmail());

        TestCase.assertEquals("rj6s-jsfr", grant.getUserId());
        TestCase.assertEquals("viewer", grant.getType());
    }
View Full Code Here

TOP

Related Classes of com.socrata.model.importer.Grant

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.