Skip to content

Commit

Permalink
#169 - added test stubs
Browse files Browse the repository at this point in the history
  • Loading branch information
hohonuuli committed Jan 30, 2024
1 parent 73c8aa7 commit 3b5f2bb
Show file tree
Hide file tree
Showing 6 changed files with 713 additions and 9 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
package org.mbari.vars.services;

public class TestUtils {
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,248 @@
package org.mbari.vars.services.annosaurus.v1;

import org.junit.jupiter.api.AfterEach;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;

class AnnoServiceITTest {

@BeforeEach
void setUp() {
}

@AfterEach
void tearDown() {
}

@Test
void countAnnotations() {
}

@Test
void countAnnotationsGroupByVideoReferenceUuid() {
}

@Test
void findByConcept() {
}

@Test
void testFindByConcept() {
}

@Test
void countByConcurrentRequest() {
}

@Test
void countByMultiRequest() {
}

@Test
void countImagedMomentsGroupByVideoReferenceUuid() {
}

@Test
void countObservationsByConcept() {
}

@Test
void countImagedMomentsModifiedBefore() {
}

@Test
void createAnnotation() {
}

@Test
void createAnnotations() {
}

@Test
void createAssociation() {
}

@Test
void testCreateAssociation() {
}

@Test
void createImage() {
}

@Test
void createOrUpdateAncillaryData() {
}

@Test
void createCachedVideoReference() {
}

@Test
void deleteAncillaryDataByVideoReference() {
}

@Test
void deleteAnnotation() {
}

@Test
void deleteAnnotations() {
}

@Test
void deleteAssociation() {
}

@Test
void deleteAssociations() {
}

@Test
void deleteImage() {
}

@Test
void deleteDuration() {
}

@Test
void deleteCacheVideoReference() {
}

@Test
void findActivities() {
}

@Test
void findAllVideoReferenceUuids() {
}

@Test
void findAncillaryData() {
}

@Test
void findAncillaryDataByVideoReference() {
}

@Test
void findAnnotations() {
}

@Test
void testFindAnnotations() {
}

@Test
void testFindAnnotations1() {
}

@Test
void testFindAnnotations2() {
}

@Test
void findAssociationByUuid() {
}

@Test
void findByConceptAssociationRequest() {
}

@Test
void findByConcurrentRequest() {
}

@Test
void findByImageReference() {
}

@Test
void findByMultiRequest() {
}

@Test
void findByUuid() {
}

@Test
void findByVideoReferenceAndLinkName() {
}

@Test
void findByVideoReferenceAndLinkNameAndConcept() {
}

@Test
void findGroups() {
}

@Test
void findImageByUrl() {
}

@Test
void findImageByUuid() {
}

@Test
void findImagesByVideoReferenceUuid() {
}

@Test
void findImagedMomentsByVideoReferenceUuid() {
}

@Test
void findIndicesByVideoReferenceUuid() {
}

@Test
void findVideoReferenceByVideoReferenceUuid() {
}

@Test
void merge() {
}

@Test
void renameConcepts() {
}

@Test
void updateAnnotation() {
}

@Test
void updateAnnotations() {
}

@Test
void updateAssociation() {
}

@Test
void updateAssociations() {
}

@Test
void updateImage() {
}

@Test
void updateIndexRecordedTimestamps() {
}

@Test
void updateRecordedTimestampsForTapes() {
}

@Test
void updateRecordedTimestamp() {
}

@Test
void updateCachedVideoReference() {
}
}
Loading

0 comments on commit 3b5f2bb

Please sign in to comment.