Browse Source
Remove unecessary toString calls. Make Cast.create public to align with other factory methods. Fix AbstractSegment.toString See #1066 Original pull request: #1071.pull/1078/head
9 changed files with 48 additions and 13 deletions
@ -0,0 +1,37 @@
@@ -0,0 +1,37 @@
|
||||
/* |
||||
* Copyright 2021 the original author or 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 |
||||
* |
||||
* https://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. |
||||
*/ |
||||
package org.springframework.data.relational.core.sql; |
||||
|
||||
import static org.assertj.core.api.Assertions.*; |
||||
|
||||
import org.junit.jupiter.api.Test; |
||||
|
||||
/** |
||||
* Unit tests for {@link AbstractSegment}. |
||||
* |
||||
* @author Mark Paluch |
||||
*/ |
||||
class AbstractSegmentTests { |
||||
|
||||
@Test // GH-1066
|
||||
void shouldReportToStringCorrectly() { |
||||
|
||||
Table table = Table.create("foo"); |
||||
AbstractSegment segment = new AbstractTestSegment(table.column("col1"), table.column("col2")); |
||||
|
||||
assertThat(segment).hasToString("AbstractTestSegment(foo.col1, foo.col2)"); |
||||
} |
||||
} |
||||
Loading…
Reference in new issue