blob: bca236c840ab002a8f2341f558b4f4a937224bbd [file] [log] [blame]
// Copyright 2013 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'package:flutter_test/flutter_test.dart';
import 'package:shared_test_plugin_code/src/generated/non_null_fields.gen.dart';
void main() {
test('test constructor', () {
final NonNullFieldSearchRequest request =
NonNullFieldSearchRequest(query: 'what?');
expect(request.query, 'what?');
});
}