View Javadoc
1   package de.dlr.shepard.context.collection.endpoints;
2   
3   import static org.junit.jupiter.api.Assertions.assertFalse;
4   import static org.junit.jupiter.api.Assertions.assertTrue;
5   
6   import de.dlr.shepard.data.ContainerAttributes;
7   import org.junit.jupiter.api.Test;
8   
9   public class ContainerAttributesTest {
10  
11    @Test
12    public void isStringTest() {
13      assertTrue(ContainerAttributes.name.isString());
14      assertFalse(ContainerAttributes.createdAt.isString());
15    }
16  }