| // Copyright 2022 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/tint/lang/core/type/helper_test.h" |
| #include "src/tint/lang/core/type/texture.h" |
| |
| namespace tint::core::type { |
| namespace { |
| |
| using I32Test = TestHelper; |
| |
| TEST_F(I32Test, Creation) { |
| auto* a = create<I32>(); |
| auto* b = create<I32>(); |
| EXPECT_EQ(a, b); |
| } |
| |
| TEST_F(I32Test, Hash) { |
| auto* a = create<I32>(); |
| auto* b = create<I32>(); |
| EXPECT_EQ(a->unique_hash, b->unique_hash); |
| } |
| |
| TEST_F(I32Test, Equals) { |
| auto* a = create<I32>(); |
| auto* b = create<I32>(); |
| EXPECT_TRUE(a->Equals(*b)); |
| EXPECT_FALSE(a->Equals(Void{})); |
| } |
| |
| TEST_F(I32Test, FriendlyName) { |
| I32 i; |
| EXPECT_EQ(i.FriendlyName(), "i32"); |
| } |
| |
| TEST_F(I32Test, Clone) { |
| auto* a = create<I32>(); |
| |
| core::type::Manager mgr; |
| core::type::CloneContext ctx{{nullptr}, {nullptr, &mgr}}; |
| |
| auto* b = a->Clone(ctx); |
| ASSERT_TRUE(b->Is<I32>()); |
| } |
| |
| } // namespace |
| } // namespace tint::core::type |