1*0c90c9adSLexi Winter/* 2*0c90c9adSLexi Winter * SPDX-License-Identifier: ISC 3*0c90c9adSLexi Winter * 4*0c90c9adSLexi Winter * Copyright (c) 2025 Lexi Winter <ivy@FreeBSD.org> 5*0c90c9adSLexi Winter * 6*0c90c9adSLexi Winter * Permission to use, copy, modify, and distribute this software for any 7*0c90c9adSLexi Winter * purpose with or without fee is hereby granted, provided that the above 8*0c90c9adSLexi Winter * copyright notice and this permission notice appear in all copies. 9*0c90c9adSLexi Winter * 10*0c90c9adSLexi Winter * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 11*0c90c9adSLexi Winter * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 12*0c90c9adSLexi Winter * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 13*0c90c9adSLexi Winter * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 14*0c90c9adSLexi Winter * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 15*0c90c9adSLexi Winter * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 16*0c90c9adSLexi Winter * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 17*0c90c9adSLexi Winter */ 18*0c90c9adSLexi Winter 19*0c90c9adSLexi Wintercomment = "Unit testing framework" 20*0c90c9adSLexi Winter 21*0c90c9adSLexi Winterdesc = <<EOD 22*0c90c9adSLexi WinterGoogle Test (gtest) is an xUnit-based unit testing framework for C++, 23*0c90c9adSLexi Winterdeveloped by Google LLC. 24*0c90c9adSLexi Winter 25*0c90c9adSLexi WinterThis version of Google Test is provided for use by unit tests in the 26*0c90c9adSLexi Winterbase system, and is not intended for third-party users. A supported 27*0c90c9adSLexi Winterversion of Google Test may be found in the FreeBSD Ports Collection 28*0c90c9adSLexi Winteras devel/googletest. 29*0c90c9adSLexi WinterEOD 30*0c90c9adSLexi Winter 31*0c90c9adSLexi Winterannotations { 32*0c90c9adSLexi Winter set = "optional,optional-jail" 33*0c90c9adSLexi Winter} 34