2020-09-29 18:07:50 +00:00
|
|
|
// Copyright 2020 The Tint Authors.
|
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
|
2022-02-02 23:07:11 +00:00
|
|
|
#include "src/ast/override_attribute.h"
|
2020-09-29 18:07:50 +00:00
|
|
|
|
2020-11-13 21:58:28 +00:00
|
|
|
#include "src/ast/test_helper.h"
|
2020-09-29 18:07:50 +00:00
|
|
|
|
|
|
|
namespace tint {
|
|
|
|
namespace ast {
|
|
|
|
namespace {
|
|
|
|
|
2022-02-02 23:07:11 +00:00
|
|
|
using OverrideAttributeTest = TestHelper;
|
2020-09-29 18:07:50 +00:00
|
|
|
|
2022-02-02 23:07:11 +00:00
|
|
|
TEST_F(OverrideAttributeTest, Creation_WithValue) {
|
|
|
|
auto* d = create<OverrideAttribute>(12);
|
2021-10-15 17:33:10 +00:00
|
|
|
EXPECT_TRUE(d->has_value);
|
|
|
|
EXPECT_EQ(12u, d->value);
|
2020-09-29 18:07:50 +00:00
|
|
|
}
|
|
|
|
|
2022-02-02 23:07:11 +00:00
|
|
|
TEST_F(OverrideAttributeTest, Creation_WithoutValue) {
|
|
|
|
auto* d = create<OverrideAttribute>();
|
2021-10-15 17:33:10 +00:00
|
|
|
EXPECT_FALSE(d->has_value);
|
2021-05-13 20:11:22 +00:00
|
|
|
}
|
|
|
|
|
2020-09-29 18:07:50 +00:00
|
|
|
} // namespace
|
|
|
|
} // namespace ast
|
|
|
|
} // namespace tint
|