blob: efa699fb18f699c8567ade63d9195ee390834bbd [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.
package com.example.test_plugin
import junit.framework.TestCase
import org.junit.Test
class NonNullFieldsTests: TestCase() {
@Test
fun testMake() {
val request = NonNullFieldSearchRequest("hello")
assertEquals("hello", request.query)
}
}