blob: 503fe83d8933c2637f04c89d50d3857df9999ab7 [file] [log] [blame]
// Copyright (C) 2016 The Android Open Source Project
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package assert_test
import "android.googlesource.com/platform/tools/gpu/framework/assert"
// An example of testing float values
func ExampleFloat() {
ctx := assert.Context(nil)
assert.With(ctx).ThatFloat(1.1).IsAtLeast(2.1)
assert.With(ctx).ThatFloat(3.1).IsAtMost(4.1)
assert.With(ctx).ThatFloat(6.1).IsAtLeast(5.1)
assert.With(ctx).ThatFloat(8.1).IsAtMost(7.1)
// Output:
// Error
// Got: 1.1
// Was less than: 2.1
// Error
// Got: 8.1
// Was more than: 7.1
}