2020-03-02 20:47:43 +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.
|
|
|
|
|
|
|
|
#include "src/ast/set_decoration.h"
|
|
|
|
|
|
|
|
#include "gtest/gtest.h"
|
|
|
|
|
|
|
|
namespace tint {
|
|
|
|
namespace ast {
|
2020-03-26 15:31:43 +00:00
|
|
|
namespace {
|
2020-03-02 20:47:43 +00:00
|
|
|
|
|
|
|
using SetDecorationTest = testing::Test;
|
|
|
|
|
|
|
|
TEST_F(SetDecorationTest, Creation) {
|
2020-11-03 21:48:20 +00:00
|
|
|
SetDecoration d{2, Source{}};
|
2020-04-17 13:18:20 +00:00
|
|
|
EXPECT_EQ(2u, d.value());
|
2020-03-02 20:47:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(SetDecorationTest, Is) {
|
2020-11-03 21:48:20 +00:00
|
|
|
SetDecoration d{2, Source{}};
|
2020-03-02 20:47:43 +00:00
|
|
|
EXPECT_FALSE(d.IsBinding());
|
|
|
|
EXPECT_FALSE(d.IsBuiltin());
|
2020-09-29 18:07:50 +00:00
|
|
|
EXPECT_FALSE(d.IsConstantId());
|
2020-03-02 20:47:43 +00:00
|
|
|
EXPECT_FALSE(d.IsLocation());
|
|
|
|
EXPECT_TRUE(d.IsSet());
|
|
|
|
}
|
|
|
|
|
2020-03-17 03:51:55 +00:00
|
|
|
TEST_F(SetDecorationTest, ToStr) {
|
2020-11-03 21:48:20 +00:00
|
|
|
SetDecoration d{2, Source{}};
|
2020-03-17 03:51:55 +00:00
|
|
|
std::ostringstream out;
|
2020-11-13 21:43:58 +00:00
|
|
|
d.to_str(out, 0);
|
2020-03-17 03:51:55 +00:00
|
|
|
EXPECT_EQ(out.str(), R"(SetDecoration{2}
|
|
|
|
)");
|
|
|
|
}
|
|
|
|
|
2020-03-26 15:31:43 +00:00
|
|
|
} // namespace
|
2020-03-02 20:47:43 +00:00
|
|
|
} // namespace ast
|
|
|
|
} // namespace tint
|