diff --git a/test/fake_matrix_api.dart b/lib/fake_matrix_api.dart similarity index 99% rename from test/fake_matrix_api.dart rename to lib/fake_matrix_api.dart index 8c980a4f..f43b1050 100644 --- a/test/fake_matrix_api.dart +++ b/lib/fake_matrix_api.dart @@ -34,6 +34,7 @@ Map decodeJson(dynamic data) { return data; } +/// A mock http client for testing purposes. class FakeMatrixApi extends MockClient { static final calledEndpoints = >{}; static int eventCounter = 0; diff --git a/lib/src/matrix_api.dart b/lib/src/matrix_api.dart index a1c055c4..d3c30def 100644 --- a/lib/src/matrix_api.dart +++ b/lib/src/matrix_api.dart @@ -1,5 +1,5 @@ /* - * Famedly Matrix SDK + * Matrix API Lite * Copyright (C) 2019, 2020 Famedly GmbH * * This program is free software: you can redistribute it and/or modify diff --git a/lib/src/model/algorithm_types.dart b/lib/src/model/algorithm_types.dart index cc657d7b..580e5f6a 100644 --- a/lib/src/model/algorithm_types.dart +++ b/lib/src/model/algorithm_types.dart @@ -1,5 +1,5 @@ /* - * Famedly Matrix SDK + * Matrix API Lite * Copyright (C) 2019, 2020 Famedly GmbH * * This program is free software: you can redistribute it and/or modify diff --git a/lib/src/model/auth/authentication_data.dart b/lib/src/model/auth/authentication_data.dart index ad340400..6d380639 100644 --- a/lib/src/model/auth/authentication_data.dart +++ b/lib/src/model/auth/authentication_data.dart @@ -1,5 +1,5 @@ /* - * Famedly Matrix SDK + * Matrix API Lite * Copyright (C) 2019, 2020 Famedly GmbH * * This program is free software: you can redistribute it and/or modify diff --git a/lib/src/model/auth/authentication_identifier.dart b/lib/src/model/auth/authentication_identifier.dart index be5a4bfa..42267c49 100644 --- a/lib/src/model/auth/authentication_identifier.dart +++ b/lib/src/model/auth/authentication_identifier.dart @@ -1,5 +1,5 @@ /* - * Famedly Matrix SDK + * Matrix API Lite * Copyright (C) 2019, 2020 Famedly GmbH * * This program is free software: you can redistribute it and/or modify diff --git a/lib/src/model/auth/authentication_password.dart b/lib/src/model/auth/authentication_password.dart index 6ae4df3f..ed9afd0e 100644 --- a/lib/src/model/auth/authentication_password.dart +++ b/lib/src/model/auth/authentication_password.dart @@ -1,5 +1,5 @@ /* - * Famedly Matrix SDK + * Matrix API Lite * Copyright (C) 2019, 2020 Famedly GmbH * * This program is free software: you can redistribute it and/or modify diff --git a/lib/src/model/auth/authentication_phone_identifier.dart b/lib/src/model/auth/authentication_phone_identifier.dart index 452f01c2..c25d602b 100644 --- a/lib/src/model/auth/authentication_phone_identifier.dart +++ b/lib/src/model/auth/authentication_phone_identifier.dart @@ -1,5 +1,5 @@ /* - * Famedly Matrix SDK + * Matrix API Lite * Copyright (C) 2019, 2020 Famedly GmbH * * This program is free software: you can redistribute it and/or modify diff --git a/lib/src/model/auth/authentication_recaptcha.dart b/lib/src/model/auth/authentication_recaptcha.dart index 3d0816ad..42e117fb 100644 --- a/lib/src/model/auth/authentication_recaptcha.dart +++ b/lib/src/model/auth/authentication_recaptcha.dart @@ -1,5 +1,5 @@ /* - * Famedly Matrix SDK + * Matrix API Lite * Copyright (C) 2019, 2020 Famedly GmbH * * This program is free software: you can redistribute it and/or modify diff --git a/lib/src/model/auth/authentication_third_party_identifier.dart b/lib/src/model/auth/authentication_third_party_identifier.dart index 5a4ab496..6dc1a3b1 100644 --- a/lib/src/model/auth/authentication_third_party_identifier.dart +++ b/lib/src/model/auth/authentication_third_party_identifier.dart @@ -1,5 +1,5 @@ /* - * Famedly Matrix SDK + * Matrix API Lite * Copyright (C) 2019, 2020 Famedly GmbH * * This program is free software: you can redistribute it and/or modify diff --git a/lib/src/model/auth/authentication_three_pid_creds.dart b/lib/src/model/auth/authentication_three_pid_creds.dart index 1ddb45e7..87d4a00d 100644 --- a/lib/src/model/auth/authentication_three_pid_creds.dart +++ b/lib/src/model/auth/authentication_three_pid_creds.dart @@ -1,5 +1,5 @@ /* - * Famedly Matrix SDK + * Matrix API Lite * Copyright (C) 2019, 2020 Famedly GmbH * * This program is free software: you can redistribute it and/or modify diff --git a/lib/src/model/auth/authentication_token.dart b/lib/src/model/auth/authentication_token.dart index 23db3755..ce705039 100644 --- a/lib/src/model/auth/authentication_token.dart +++ b/lib/src/model/auth/authentication_token.dart @@ -1,5 +1,5 @@ /* - * Famedly Matrix SDK + * Matrix API Lite * Copyright (C) 2019, 2020 Famedly GmbH * * This program is free software: you can redistribute it and/or modify diff --git a/lib/src/model/auth/authentication_types.dart b/lib/src/model/auth/authentication_types.dart index 34e357f3..46237bc0 100644 --- a/lib/src/model/auth/authentication_types.dart +++ b/lib/src/model/auth/authentication_types.dart @@ -1,5 +1,5 @@ /* - * Famedly Matrix SDK + * Matrix API Lite * Copyright (C) 2019, 2020 Famedly GmbH * * This program is free software: you can redistribute it and/or modify diff --git a/lib/src/model/auth/authentication_user_identifier.dart b/lib/src/model/auth/authentication_user_identifier.dart index 66e6091e..d8dffb59 100644 --- a/lib/src/model/auth/authentication_user_identifier.dart +++ b/lib/src/model/auth/authentication_user_identifier.dart @@ -1,5 +1,5 @@ /* - * Famedly Matrix SDK + * Matrix API Lite * Copyright (C) 2019, 2020 Famedly GmbH * * This program is free software: you can redistribute it and/or modify diff --git a/lib/src/model/basic_event.dart b/lib/src/model/basic_event.dart index 7a91f559..372b2853 100644 --- a/lib/src/model/basic_event.dart +++ b/lib/src/model/basic_event.dart @@ -1,5 +1,5 @@ /* - * Famedly Matrix SDK + * Matrix API Lite * Copyright (C) 2019, 2020 Famedly GmbH * * This program is free software: you can redistribute it and/or modify diff --git a/lib/src/model/basic_event_with_sender.dart b/lib/src/model/basic_event_with_sender.dart index 0e50bd86..c48a4d6c 100644 --- a/lib/src/model/basic_event_with_sender.dart +++ b/lib/src/model/basic_event_with_sender.dart @@ -1,5 +1,5 @@ /* - * Famedly Matrix SDK + * Matrix API Lite * Copyright (C) 2019, 2020 Famedly GmbH * * This program is free software: you can redistribute it and/or modify diff --git a/lib/src/model/basic_room_event.dart b/lib/src/model/basic_room_event.dart index de8ee75c..a9990421 100644 --- a/lib/src/model/basic_room_event.dart +++ b/lib/src/model/basic_room_event.dart @@ -1,5 +1,5 @@ /* - * Famedly Matrix SDK + * Matrix API Lite * Copyright (C) 2019, 2020 Famedly GmbH * * This program is free software: you can redistribute it and/or modify diff --git a/lib/src/model/device.dart b/lib/src/model/device.dart index aa089a4b..367b6c42 100644 --- a/lib/src/model/device.dart +++ b/lib/src/model/device.dart @@ -1,5 +1,5 @@ /* - * Famedly Matrix SDK + * Matrix API Lite * Copyright (C) 2019, 2020 Famedly GmbH * * This program is free software: you can redistribute it and/or modify diff --git a/lib/src/model/event_context.dart b/lib/src/model/event_context.dart index 9d23961c..0332063f 100644 --- a/lib/src/model/event_context.dart +++ b/lib/src/model/event_context.dart @@ -1,5 +1,5 @@ /* - * Famedly Matrix SDK + * Matrix API Lite * Copyright (C) 2019, 2020 Famedly GmbH * * This program is free software: you can redistribute it and/or modify diff --git a/lib/src/model/event_types.dart b/lib/src/model/event_types.dart index 36b63a7d..fa506591 100644 --- a/lib/src/model/event_types.dart +++ b/lib/src/model/event_types.dart @@ -1,5 +1,5 @@ /* - * Famedly Matrix SDK + * Matrix API Lite * Copyright (C) 2019, 2020 Famedly GmbH * * This program is free software: you can redistribute it and/or modify diff --git a/lib/src/model/events_sync_update.dart b/lib/src/model/events_sync_update.dart index 46b0fb3f..65a90b43 100644 --- a/lib/src/model/events_sync_update.dart +++ b/lib/src/model/events_sync_update.dart @@ -1,5 +1,5 @@ /* - * Famedly Matrix SDK + * Matrix API Lite * Copyright (C) 2019, 2020 Famedly GmbH * * This program is free software: you can redistribute it and/or modify diff --git a/lib/src/model/filter.dart b/lib/src/model/filter.dart index b1e18a7d..5886b83f 100644 --- a/lib/src/model/filter.dart +++ b/lib/src/model/filter.dart @@ -1,5 +1,5 @@ /* - * Famedly Matrix SDK + * Matrix API Lite * Copyright (C) 2019, 2020 Famedly GmbH * * This program is free software: you can redistribute it and/or modify diff --git a/lib/src/model/keys_query_response.dart b/lib/src/model/keys_query_response.dart index ed02e87d..4faaa46d 100644 --- a/lib/src/model/keys_query_response.dart +++ b/lib/src/model/keys_query_response.dart @@ -1,5 +1,5 @@ /* - * Famedly Matrix SDK + * Matrix API Lite * Copyright (C) 2019, 2020 Famedly GmbH * * This program is free software: you can redistribute it and/or modify diff --git a/lib/src/model/login_response.dart b/lib/src/model/login_response.dart index a29627ad..7d575246 100644 --- a/lib/src/model/login_response.dart +++ b/lib/src/model/login_response.dart @@ -1,5 +1,5 @@ /* - * Famedly Matrix SDK + * Matrix API Lite * Copyright (C) 2019, 2020 Famedly GmbH * * This program is free software: you can redistribute it and/or modify diff --git a/lib/src/model/login_types.dart b/lib/src/model/login_types.dart index 5cb67d22..647f7b97 100644 --- a/lib/src/model/login_types.dart +++ b/lib/src/model/login_types.dart @@ -1,5 +1,5 @@ /* - * Famedly Matrix SDK + * Matrix API Lite * Copyright (C) 2019, 2020 Famedly GmbH * * This program is free software: you can redistribute it and/or modify diff --git a/lib/src/model/matrix_connection_exception.dart b/lib/src/model/matrix_connection_exception.dart index b45192e0..4d89b454 100644 --- a/lib/src/model/matrix_connection_exception.dart +++ b/lib/src/model/matrix_connection_exception.dart @@ -1,5 +1,5 @@ /* - * Famedly Matrix SDK + * Matrix API Lite * Copyright (C) 2019, 2020 Famedly GmbH * * This program is free software: you can redistribute it and/or modify diff --git a/lib/src/model/matrix_event.dart b/lib/src/model/matrix_event.dart index 83fe7596..451dbb36 100644 --- a/lib/src/model/matrix_event.dart +++ b/lib/src/model/matrix_event.dart @@ -1,5 +1,5 @@ /* - * Famedly Matrix SDK + * Matrix API Lite * Copyright (C) 2019, 2020 Famedly GmbH * * This program is free software: you can redistribute it and/or modify diff --git a/lib/src/model/matrix_exception.dart b/lib/src/model/matrix_exception.dart index fa292c9c..05818130 100644 --- a/lib/src/model/matrix_exception.dart +++ b/lib/src/model/matrix_exception.dart @@ -1,5 +1,5 @@ /* - * Famedly Matrix SDK + * Matrix API Lite * Copyright (C) 2019, 2020 Famedly GmbH * * This program is free software: you can redistribute it and/or modify diff --git a/lib/src/model/matrix_keys.dart b/lib/src/model/matrix_keys.dart index 317ef390..d61f9bd9 100644 --- a/lib/src/model/matrix_keys.dart +++ b/lib/src/model/matrix_keys.dart @@ -1,5 +1,5 @@ /* - * Famedly Matrix SDK + * Matrix API Lite * Copyright (C) 2019, 2020 Famedly GmbH * * This program is free software: you can redistribute it and/or modify diff --git a/lib/src/model/message_types.dart b/lib/src/model/message_types.dart index 90fe2d08..c0bbf9a6 100644 --- a/lib/src/model/message_types.dart +++ b/lib/src/model/message_types.dart @@ -1,5 +1,5 @@ /* - * Famedly Matrix SDK + * Matrix API Lite * Copyright (C) 2019, 2020 Famedly GmbH * * This program is free software: you can redistribute it and/or modify diff --git a/lib/src/model/notifications_query_response.dart b/lib/src/model/notifications_query_response.dart index f9eff6b9..0f6f99d5 100644 --- a/lib/src/model/notifications_query_response.dart +++ b/lib/src/model/notifications_query_response.dart @@ -1,5 +1,5 @@ /* - * Famedly Matrix SDK + * Matrix API Lite * Copyright (C) 2019, 2020 Famedly GmbH * * This program is free software: you can redistribute it and/or modify diff --git a/lib/src/model/one_time_keys_claim_response.dart b/lib/src/model/one_time_keys_claim_response.dart index 7607892b..a0fc43c5 100644 --- a/lib/src/model/one_time_keys_claim_response.dart +++ b/lib/src/model/one_time_keys_claim_response.dart @@ -1,5 +1,5 @@ /* - * Famedly Matrix SDK + * Matrix API Lite * Copyright (C) 2019, 2020 Famedly GmbH * * This program is free software: you can redistribute it and/or modify diff --git a/lib/src/model/open_graph_data.dart b/lib/src/model/open_graph_data.dart index d2d8eb60..28ffbdf5 100644 --- a/lib/src/model/open_graph_data.dart +++ b/lib/src/model/open_graph_data.dart @@ -1,5 +1,5 @@ /* - * Famedly Matrix SDK + * Matrix API Lite * Copyright (C) 2019, 2020 Famedly GmbH * * This program is free software: you can redistribute it and/or modify diff --git a/lib/src/model/open_id_credentials.dart b/lib/src/model/open_id_credentials.dart index 1d2902bd..976aae64 100644 --- a/lib/src/model/open_id_credentials.dart +++ b/lib/src/model/open_id_credentials.dart @@ -1,5 +1,5 @@ /* - * Famedly Matrix SDK + * Matrix API Lite * Copyright (C) 2019, 2020 Famedly GmbH * * This program is free software: you can redistribute it and/or modify diff --git a/lib/src/model/presence.dart b/lib/src/model/presence.dart index c8044063..87ab5603 100644 --- a/lib/src/model/presence.dart +++ b/lib/src/model/presence.dart @@ -1,5 +1,5 @@ /* - * Famedly Matrix SDK + * Matrix API Lite * Copyright (C) 2019, 2020 Famedly GmbH * * This program is free software: you can redistribute it and/or modify diff --git a/lib/src/model/presence_content.dart b/lib/src/model/presence_content.dart index df9d2f08..4d50fbea 100644 --- a/lib/src/model/presence_content.dart +++ b/lib/src/model/presence_content.dart @@ -1,5 +1,5 @@ /* - * Famedly Matrix SDK + * Matrix API Lite * Copyright (C) 2019, 2020 Famedly GmbH * * This program is free software: you can redistribute it and/or modify diff --git a/lib/src/model/profile.dart b/lib/src/model/profile.dart index 37eace57..1a5a4180 100644 --- a/lib/src/model/profile.dart +++ b/lib/src/model/profile.dart @@ -1,5 +1,5 @@ /* - * Famedly Matrix SDK + * Matrix API Lite * Copyright (C) 2019, 2020 Famedly GmbH * * This program is free software: you can redistribute it and/or modify diff --git a/lib/src/model/public_rooms_response.dart b/lib/src/model/public_rooms_response.dart index f227dfb7..3bfe6f64 100644 --- a/lib/src/model/public_rooms_response.dart +++ b/lib/src/model/public_rooms_response.dart @@ -1,5 +1,5 @@ /* - * Famedly Matrix SDK + * Matrix API Lite * Copyright (C) 2019, 2020 Famedly GmbH * * This program is free software: you can redistribute it and/or modify diff --git a/lib/src/model/push_rule_set.dart b/lib/src/model/push_rule_set.dart index 2c9682b5..3df87126 100644 --- a/lib/src/model/push_rule_set.dart +++ b/lib/src/model/push_rule_set.dart @@ -1,5 +1,5 @@ /* - * Famedly Matrix SDK + * Matrix API Lite * Copyright (C) 2019, 2020 Famedly GmbH * * This program is free software: you can redistribute it and/or modify diff --git a/lib/src/model/pusher.dart b/lib/src/model/pusher.dart index 00bc2803..8c080949 100644 --- a/lib/src/model/pusher.dart +++ b/lib/src/model/pusher.dart @@ -1,5 +1,5 @@ /* - * Famedly Matrix SDK + * Matrix API Lite * Copyright (C) 2019, 2020 Famedly GmbH * * This program is free software: you can redistribute it and/or modify diff --git a/lib/src/model/request_token_response.dart b/lib/src/model/request_token_response.dart index ee264be6..41df73cc 100644 --- a/lib/src/model/request_token_response.dart +++ b/lib/src/model/request_token_response.dart @@ -1,5 +1,5 @@ /* - * Famedly Matrix SDK + * Matrix API Lite * Copyright (C) 2019, 2020 Famedly GmbH * * This program is free software: you can redistribute it and/or modify diff --git a/lib/src/model/room_alias_informations.dart b/lib/src/model/room_alias_informations.dart index d6b81640..8fd7cfa2 100644 --- a/lib/src/model/room_alias_informations.dart +++ b/lib/src/model/room_alias_informations.dart @@ -1,5 +1,5 @@ /* - * Famedly Matrix SDK + * Matrix API Lite * Copyright (C) 2019, 2020 Famedly GmbH * * This program is free software: you can redistribute it and/or modify diff --git a/lib/src/model/room_keys_info.dart b/lib/src/model/room_keys_info.dart index 037b20e1..b482d192 100644 --- a/lib/src/model/room_keys_info.dart +++ b/lib/src/model/room_keys_info.dart @@ -1,5 +1,5 @@ /* - * Famedly Matrix SDK + * Matrix API Lite * Copyright (C) 2020 Famedly GmbH * * This program is free software: you can redistribute it and/or modify diff --git a/lib/src/model/room_keys_keys.dart b/lib/src/model/room_keys_keys.dart index 69870665..4c47489d 100644 --- a/lib/src/model/room_keys_keys.dart +++ b/lib/src/model/room_keys_keys.dart @@ -1,5 +1,5 @@ /* - * Famedly Matrix SDK + * Matrix API Lite * Copyright (C) 2020 Famedly GmbH * * This program is free software: you can redistribute it and/or modify diff --git a/lib/src/model/room_summary.dart b/lib/src/model/room_summary.dart index 67b6a8f3..21064d1a 100644 --- a/lib/src/model/room_summary.dart +++ b/lib/src/model/room_summary.dart @@ -1,5 +1,5 @@ /* - * Famedly Matrix SDK + * Matrix API Lite * Copyright (C) 2019, 2020 Famedly GmbH * * This program is free software: you can redistribute it and/or modify diff --git a/lib/src/model/server_capabilities.dart b/lib/src/model/server_capabilities.dart index 0ae7c1ee..de2d6fa0 100644 --- a/lib/src/model/server_capabilities.dart +++ b/lib/src/model/server_capabilities.dart @@ -1,5 +1,5 @@ /* - * Famedly Matrix SDK + * Matrix API Lite * Copyright (C) 2019, 2020 Famedly GmbH * * This program is free software: you can redistribute it and/or modify diff --git a/lib/src/model/stripped_state_event.dart b/lib/src/model/stripped_state_event.dart index 29c0740a..8749c89e 100644 --- a/lib/src/model/stripped_state_event.dart +++ b/lib/src/model/stripped_state_event.dart @@ -1,5 +1,5 @@ /* - * Famedly Matrix SDK + * Matrix API Lite * Copyright (C) 2019, 2020 Famedly GmbH * * This program is free software: you can redistribute it and/or modify diff --git a/lib/src/model/supported_protocol.dart b/lib/src/model/supported_protocol.dart index 736b7d6d..c1b56f4f 100644 --- a/lib/src/model/supported_protocol.dart +++ b/lib/src/model/supported_protocol.dart @@ -1,5 +1,5 @@ /* - * Famedly Matrix SDK + * Matrix API Lite * Copyright (C) 2019, 2020 Famedly GmbH * * This program is free software: you can redistribute it and/or modify diff --git a/lib/src/model/supported_versions.dart b/lib/src/model/supported_versions.dart index 33ab8c49..0a834a99 100644 --- a/lib/src/model/supported_versions.dart +++ b/lib/src/model/supported_versions.dart @@ -1,5 +1,5 @@ /* - * Famedly Matrix SDK + * Matrix API Lite * Copyright (C) 2019, 2020 Famedly GmbH * * This program is free software: you can redistribute it and/or modify diff --git a/lib/src/model/sync_update.dart b/lib/src/model/sync_update.dart index c36c09e1..fb3b867d 100644 --- a/lib/src/model/sync_update.dart +++ b/lib/src/model/sync_update.dart @@ -1,5 +1,5 @@ /* - * Famedly Matrix SDK + * Matrix API Lite * Copyright (C) 2019, 2020 Famedly GmbH * * This program is free software: you can redistribute it and/or modify diff --git a/lib/src/model/tag.dart b/lib/src/model/tag.dart index f63d6e57..1c77be30 100644 --- a/lib/src/model/tag.dart +++ b/lib/src/model/tag.dart @@ -1,5 +1,5 @@ /* - * Famedly Matrix SDK + * Matrix API Lite * Copyright (C) 2019, 2020 Famedly GmbH * * This program is free software: you can redistribute it and/or modify diff --git a/lib/src/model/third_party_identifier.dart b/lib/src/model/third_party_identifier.dart index 25d5b469..a1c396c5 100644 --- a/lib/src/model/third_party_identifier.dart +++ b/lib/src/model/third_party_identifier.dart @@ -1,5 +1,5 @@ /* - * Famedly Matrix SDK + * Matrix API Lite * Copyright (C) 2019, 2020 Famedly GmbH * * This program is free software: you can redistribute it and/or modify diff --git a/lib/src/model/third_party_location.dart b/lib/src/model/third_party_location.dart index 39546099..0331f7b6 100644 --- a/lib/src/model/third_party_location.dart +++ b/lib/src/model/third_party_location.dart @@ -1,5 +1,5 @@ /* - * Famedly Matrix SDK + * Matrix API Lite * Copyright (C) 2019, 2020 Famedly GmbH * * This program is free software: you can redistribute it and/or modify diff --git a/lib/src/model/third_party_user.dart b/lib/src/model/third_party_user.dart index e19818e8..3a2d8db9 100644 --- a/lib/src/model/third_party_user.dart +++ b/lib/src/model/third_party_user.dart @@ -1,5 +1,5 @@ /* - * Famedly Matrix SDK + * Matrix API Lite * Copyright (C) 2019, 2020 Famedly GmbH * * This program is free software: you can redistribute it and/or modify diff --git a/lib/src/model/timeline_history_response.dart b/lib/src/model/timeline_history_response.dart index e5752762..ec04c60b 100644 --- a/lib/src/model/timeline_history_response.dart +++ b/lib/src/model/timeline_history_response.dart @@ -1,5 +1,5 @@ /* - * Famedly Matrix SDK + * Matrix API Lite * Copyright (C) 2019, 2020 Famedly GmbH * * This program is free software: you can redistribute it and/or modify diff --git a/lib/src/model/turn_server_credentials.dart b/lib/src/model/turn_server_credentials.dart index bf350f50..d6f28c6f 100644 --- a/lib/src/model/turn_server_credentials.dart +++ b/lib/src/model/turn_server_credentials.dart @@ -1,5 +1,5 @@ /* - * Famedly Matrix SDK + * Matrix API Lite * Copyright (C) 2019, 2020 Famedly GmbH * * This program is free software: you can redistribute it and/or modify diff --git a/lib/src/model/upload_key_signatures_response.dart b/lib/src/model/upload_key_signatures_response.dart index 325aa5e7..9c665e15 100644 --- a/lib/src/model/upload_key_signatures_response.dart +++ b/lib/src/model/upload_key_signatures_response.dart @@ -1,5 +1,5 @@ /* - * Famedly Matrix SDK + * Matrix API Lite * Copyright (C) 2020 Famedly GmbH * * This program is free software: you can redistribute it and/or modify diff --git a/lib/src/model/user_search_result.dart b/lib/src/model/user_search_result.dart index 1d498083..04beea6d 100644 --- a/lib/src/model/user_search_result.dart +++ b/lib/src/model/user_search_result.dart @@ -1,5 +1,5 @@ /* - * Famedly Matrix SDK + * Matrix API Lite * Copyright (C) 2019, 2020 Famedly GmbH * * This program is free software: you can redistribute it and/or modify diff --git a/lib/src/model/well_known_informations.dart b/lib/src/model/well_known_informations.dart index feba960c..a12cd171 100644 --- a/lib/src/model/well_known_informations.dart +++ b/lib/src/model/well_known_informations.dart @@ -1,5 +1,5 @@ /* - * Famedly Matrix SDK + * Matrix API Lite * Copyright (C) 2019, 2020 Famedly GmbH * * This program is free software: you can redistribute it and/or modify diff --git a/lib/src/model/who_is_info.dart b/lib/src/model/who_is_info.dart index 6a266852..fee8dbe2 100644 --- a/lib/src/model/who_is_info.dart +++ b/lib/src/model/who_is_info.dart @@ -1,5 +1,5 @@ /* - * Famedly Matrix SDK + * Matrix API Lite * Copyright (C) 2019, 2020 Famedly GmbH * * This program is free software: you can redistribute it and/or modify diff --git a/lib/src/utils/logs.dart b/lib/src/utils/logs.dart index 7e15f379..35b1d2cc 100644 --- a/lib/src/utils/logs.dart +++ b/lib/src/utils/logs.dart @@ -1,5 +1,5 @@ /* - * Famedly Matrix SDK + * Matrix API Lite * Copyright (C) 2020 Famedly GmbH * * This program is free software: you can redistribute it and/or modify diff --git a/lib/src/utils/map_copy_extension.dart b/lib/src/utils/map_copy_extension.dart index 84ddc272..ef821e9b 100644 --- a/lib/src/utils/map_copy_extension.dart +++ b/lib/src/utils/map_copy_extension.dart @@ -1,5 +1,5 @@ /* - * Famedly Matrix SDK + * Matrix API Lite * Copyright (C) 2020 Famedly GmbH * * This program is free software: you can redistribute it and/or modify diff --git a/test/matrix_api_test.dart b/test/matrix_api_test.dart index d545bf11..83c73acc 100644 --- a/test/matrix_api_test.dart +++ b/test/matrix_api_test.dart @@ -18,11 +18,10 @@ import 'dart:typed_data'; import 'package:logger/logger.dart'; +import 'package:matrix_api_lite/fake_matrix_api.dart'; import 'package:matrix_api_lite/matrix_api_lite.dart'; import 'package:test/test.dart'; -import 'fake_matrix_api.dart'; - void main() { /// All Tests related to device keys group('Matrix API', () {