blob: b1d045dd863227b7d4524d8561d85042a75d15e4 [file] [log] [blame]
// Copyright 2021 The Fuchsia Authors.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
package main
// mockComparator is a comparator that always returns a 1.0 score.
type mockComparator struct{}
func (c mockComparator) Compare(s1, s2 string) float64 {
return 1.0
}