fix:#41 fixed naming issue sonarqube

This commit is contained in:
Elmar Kresse
2024-06-24 15:29:58 +02:00
parent 3e2b3c3720
commit bfb05b6704
12 changed files with 30 additions and 30 deletions

View File

@@ -24,7 +24,7 @@ import (
"github.com/pocketbase/pocketbase/tools/types"
)
func TestEvents_Contains(t *testing.T) {
func TestEventsContains(t *testing.T) {
specificTime, _ := types.ParseDateTime("2020-01-01 12:00:00.000Z")
type args struct {
@@ -70,7 +70,7 @@ func TestEvents_Contains(t *testing.T) {
}
}
func TestEvent_Equals(t *testing.T) {
func TestEventEquals(t *testing.T) {
specificTime, _ := types.ParseDateTime("2020-01-01 12:00:00.000Z")
type fields struct {
@@ -148,7 +148,7 @@ func TestEvent_Equals(t *testing.T) {
}
}
func TestEvent_AnonymizeEvent(t *testing.T) {
func TestEventAnonymizeEvent(t *testing.T) {
type fields struct {
UUID string
Day string
@@ -218,7 +218,7 @@ func TestEvent_AnonymizeEvent(t *testing.T) {
}
}
func TestEvent_GetName(t *testing.T) {
func TestEventGetName(t *testing.T) {
type fields struct {
UUID string
Day string
@@ -278,7 +278,7 @@ func TestEvent_GetName(t *testing.T) {
}
}
func TestEvent_SetCourse(t *testing.T) {
func TestEventSetCourse(t *testing.T) {
type fields struct {
UUID string
Day string
@@ -338,7 +338,7 @@ func TestEvent_SetCourse(t *testing.T) {
}
}
func TestEvent_SetName(t *testing.T) {
func TestEventSetName(t *testing.T) {
type fields struct {
UUID string
Day string
@@ -398,7 +398,7 @@ func TestEvent_SetName(t *testing.T) {
}
}
func TestEvent_TableName(t *testing.T) {
func TestEventTableName(t *testing.T) {
type fields struct {
UUID string
Day string
@@ -453,7 +453,7 @@ func TestEvent_TableName(t *testing.T) {
}
}
func TestEvents_Contains1(t *testing.T) {
func TestEventsContains1(t *testing.T) {
type args struct {
event Event
}