mirror of
https://github.com/sismics/docs.git
synced 2025-12-13 09:46:17 +00:00
#65: Init vocabulary resource
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
package com.sismics.docs.rest.resource;
|
||||
|
||||
import javax.ws.rs.Path;
|
||||
|
||||
/**
|
||||
* Vocabulary REST resources.
|
||||
*
|
||||
* @author bgamard
|
||||
*/
|
||||
@Path("/vocabulary")
|
||||
public class VocabularyResource extends BaseResource {
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
package com.sismics.docs.rest;
|
||||
|
||||
import org.junit.Test;
|
||||
|
||||
/**
|
||||
* Exhaustive test of the vocabulary resource.
|
||||
*
|
||||
* @author bgamard
|
||||
*/
|
||||
public class TestVocabularyResource extends BaseJerseyTest {
|
||||
/**
|
||||
* Test the vocabulary resource.
|
||||
*
|
||||
* @throws Exception
|
||||
*/
|
||||
@Test
|
||||
public void testVocabularyResource() throws Exception {
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user