Final commit.
This commit is contained in:
56
packages/holzleitner_api/test/sync_contact_source_test.dart
Normal file
56
packages/holzleitner_api/test/sync_contact_source_test.dart
Normal file
@ -0,0 +1,56 @@
|
||||
import 'package:test/test.dart';
|
||||
import 'package:holzleitner_api/holzleitner_api.dart';
|
||||
|
||||
// tests for SyncContactSource
|
||||
void main() {
|
||||
final instance = SyncContactSourceBuilder();
|
||||
// TODO add properties to the builder and call build()
|
||||
|
||||
group(SyncContactSource, () {
|
||||
// String abteilung
|
||||
test('to test the property `abteilung`', () async {
|
||||
// TODO
|
||||
});
|
||||
|
||||
// String anrede
|
||||
test('to test the property `anrede`', () async {
|
||||
// TODO
|
||||
});
|
||||
|
||||
// BuiltList<SyncContactChannel> channels
|
||||
test('to test the property `channels`', () async {
|
||||
// TODO
|
||||
});
|
||||
|
||||
// String funktion
|
||||
test('to test the property `funktion`', () async {
|
||||
// TODO
|
||||
});
|
||||
|
||||
// String name1
|
||||
test('to test the property `name1`', () async {
|
||||
// TODO
|
||||
});
|
||||
|
||||
// String name2
|
||||
test('to test the property `name2`', () async {
|
||||
// TODO
|
||||
});
|
||||
|
||||
// String name3
|
||||
test('to test the property `name3`', () async {
|
||||
// TODO
|
||||
});
|
||||
|
||||
// ContactRole role
|
||||
test('to test the property `role`', () async {
|
||||
// TODO
|
||||
});
|
||||
|
||||
// String titel
|
||||
test('to test the property `titel`', () async {
|
||||
// TODO
|
||||
});
|
||||
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user