From a2a7a69f14f62041ad4dba41fbb6e4ef88e3338c Mon Sep 17 00:00:00 2001 From: elraphty Date: Tue, 2 Jul 2024 13:17:19 +0100 Subject: [PATCH] added test function wrapers for feature test --- handlers/features_test.go | 63 +++++++++++++++++++++++++++++++++++++ handlers/workspaces_test.go | 4 --- 2 files changed, 63 insertions(+), 4 deletions(-) create mode 100644 handlers/features_test.go diff --git a/handlers/features_test.go b/handlers/features_test.go new file mode 100644 index 000000000..8fdac164f --- /dev/null +++ b/handlers/features_test.go @@ -0,0 +1,63 @@ +package handlers + +import "testing" + +func TestCreateOrEditFeatures(t *testing.T) { + +} + +func TestDeleteFeature(t *testing.T) { + +} + +func TestGetFeaturesByWorkspaceUuid(t *testing.T) { + +} + +func TestGetWorkspaceFeaturesCount(t *testing.T) { + +} + +func TestGetFeatureByUuid(t *testing.T) { + +} + +func TestCreateOrEditFeaturePhase(t *testing.T) { + +} + +func TestGetFeaturePhases(t *testing.T) { + +} + +func TestGetFeaturePhaseByUUID(t *testing.T) { + +} + +func TestDeleteFeaturePhase(t *testing.T) { + +} + +func TestCreateOrEditStory(t *testing.T) { + +} + +func TestGetStoriesByFeatureUuid(t *testing.T) { + +} + +func TestGetStoryByUuid(t *testing.T) { + +} + +func TestDeleteStory(t *testing.T) { + +} + +func TestGetBountiesByFeatureAndPhaseUuid(t *testing.T) { + +} + +func TestGetBountiesCountByFeatureAndPhaseUuid(t *testing.T) { + +} diff --git a/handlers/workspaces_test.go b/handlers/workspaces_test.go index 62cf77536..86c3531bf 100644 --- a/handlers/workspaces_test.go +++ b/handlers/workspaces_test.go @@ -1407,10 +1407,6 @@ func TestGetWorkspaceRepoByWorkspaceUuidAndRepoUuid(t *testing.T) { }) } -func GetFeaturesByWorkspaceUuid(t *testing.T) { - -} - func TestDeleteWorkspaceRepository(t *testing.T) { }