@@ -30,6 +30,10 @@ class ExpansionsV2Tests: XCTestCase {
3030 )
3131 }
3232
33+ func testTwitterTweetExpansionsV2All( ) throws {
34+ XCTAssertEqual ( TwitterTweetExpansionsV2 . all. count, 8 )
35+ }
36+
3337 func testTwitterUserExpansionsV2( ) throws {
3438
3539 let allCases : [ TwitterUserExpansionsV2 ] = [
@@ -44,6 +48,10 @@ class ExpansionsV2Tests: XCTestCase {
4448 )
4549 }
4650
51+ func testTwitterUserExpansionsV2All( ) throws {
52+ XCTAssertEqual ( TwitterUserExpansionsV2 . all. count, 1 )
53+ }
54+
4755 func testTwitterListExpansionsV2( ) throws {
4856 let allCases : [ TwitterListExpansionsV2 ] = [
4957 . ownerID,
@@ -57,6 +65,10 @@ class ExpansionsV2Tests: XCTestCase {
5765 )
5866 }
5967
68+ func testTwitterListExpansionsV2All( ) throws {
69+ XCTAssertEqual ( TwitterListExpansionsV2 . all. count, 1 )
70+ }
71+
6072 func testTwitterSpaceExpansionsV2( ) throws {
6173 let allCases : [ TwitterSpaceExpansionsV2 ] = [
6274 . invitedUserIDs,
@@ -71,6 +83,8 @@ class ExpansionsV2Tests: XCTestCase {
7183 allCases. commaSeparatedString,
7284 " creator_id,host_ids,invited_user_ids,speaker_ids,~~~ "
7385 )
86+
87+ XCTAssertEqual ( TwitterSpaceExpansionsV2 . all. count, 4 )
7488 }
7589
7690}
0 commit comments