Added some test todos

This commit is contained in:
Marius Orcsik 2019-12-15 19:01:29 +01:00
parent 9cd8cd6074
commit 24fa9f805d
No known key found for this signature in database
GPG key ID: 77618B618F79EB72
7 changed files with 121 additions and 41 deletions

View file

@ -969,3 +969,11 @@ func TestActivity_Clean(t *testing.T) {
func TestActivity_IsCollection(t *testing.T) {
t.Skipf("TODO")
}
func TestActivity_GetLink(t *testing.T) {
t.Skipf("TODO")
}
func TestActivity_GetType(t *testing.T) {
t.Skipf("TODO")
}

View file

@ -143,3 +143,27 @@ func TestToCollectionPage(t *testing.T) {
func TestCollectionPage_Contains(t *testing.T) {
t.Skipf("TODO")
}
func TestCollectionPage_GetID(t *testing.T) {
t.Skipf("TODO")
}
func TestCollectionPage_GetLink(t *testing.T) {
t.Skipf("TODO")
}
func TestCollectionPage_GetType(t *testing.T) {
t.Skipf("TODO")
}
func TestCollectionPage_IsCollection(t *testing.T) {
t.Skipf("TODO")
}
func TestCollectionPage_IsLink(t *testing.T) {
t.Skipf("TODO")
}
func TestCollectionPage_IsObject(t *testing.T) {
t.Skipf("TODO")
}

View file

@ -169,3 +169,8 @@ func TestToCollection(t *testing.T) {
func TestCollection_Contains(t *testing.T) {
t.Skipf("TODO")
}
func TestCollection_IsCollection(t *testing.T) {
t.Skipf("TODO")
}

View file

@ -210,3 +210,11 @@ func TestIRI_Equals(t *testing.T) {
}
}
}
func TestIRI_Contains(t *testing.T) {
t.Skip("TODO")
}
func TestIRI_IsCollection(t *testing.T) {
t.Skip("TODO")
}

55
item_collection_test.go Normal file
View file

@ -0,0 +1,55 @@
package activitypub
import "testing"
func TestItemCollection_Append(t *testing.T) {
t.Skipf("TODO")
}
func TestItemCollection_Collection(t *testing.T) {
t.Skipf("TODO")
}
func TestItemCollection_GetID(t *testing.T) {
t.Skipf("TODO")
}
func TestItemCollection_GetLink(t *testing.T) {
t.Skipf("TODO")
}
func TestItemCollection_GetType(t *testing.T) {
t.Skipf("TODO")
}
func TestItemCollection_IsLink(t *testing.T) {
t.Skipf("TODO")
}
func TestItemCollection_IsObject(t *testing.T) {
t.Skipf("TODO")
}
func TestItemCollection_First(t *testing.T) {
t.Skipf("TODO")
}
func TestFlattenItemCollection(t *testing.T) {
t.Skipf("TODO")
}
func TestItemCollection_Count(t *testing.T) {
t.Skipf("TODO")
}
func TestItemCollection_Contains(t *testing.T) {
t.Skipf("TODO")
}
func TestItemCollection_IsCollection(t *testing.T) {
t.Skipf("TODO")
}
func TestToItemCollection(t *testing.T) {
t.Skipf("TODO")
}

View file

@ -2,46 +2,6 @@ package activitypub
import "testing"
func TestItemCollection_Append(t *testing.T) {
t.Skipf("TODO")
}
func TestItemCollection_Collection(t *testing.T) {
t.Skipf("TODO")
}
func TestItemCollection_GetID(t *testing.T) {
t.Skipf("TODO")
}
func TestItemCollection_GetLink(t *testing.T) {
t.Skipf("TODO")
}
func TestItemCollection_GetType(t *testing.T) {
t.Skipf("TODO")
}
func TestItemCollection_IsLink(t *testing.T) {
t.Skipf("TODO")
}
func TestItemCollection_IsObject(t *testing.T) {
t.Skipf("TODO")
}
func TestItemCollection_First(t *testing.T) {
t.Skipf("TODO")
}
func TestFlattenItemCollection(t *testing.T) {
t.Skipf("TODO")
}
func TestItemCollection_Count(t *testing.T) {
t.Skipf("TODO")
}
func TestItemCollection_Contains(t *testing.T) {
func TestFlatten(t *testing.T) {
t.Skipf("TODO")
}

View file

@ -196,3 +196,23 @@ func TestJSONUnmarshalToItem(t *testing.T) {
func TestJSONGetActorEndpoints(t *testing.T) {
t.Skipf("TODO")
}
func TestJSONGetBoolean(t *testing.T) {
t.Skipf("TODO")
}
func TestJSONGetBytes(t *testing.T) {
t.Skipf("TODO")
}
func TestJSONGetFloat(t *testing.T) {
t.Skipf("TODO")
}
func TestJSONGetPublicKey(t *testing.T) {
t.Skipf("TODO")
}
func TestJSONGetStreams(t *testing.T) {
t.Skipf("TODO")
}