< prev index next >

test/langtools/tools/javac/switchexpr/ExpressionSwitchBreaks1.java

Print this page
rev 56806 : 8232684: Make switch expressions final
Reviewed-by: TBD


   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /*
  25  * @test
  26  * @bug 8206986
  27  * @summary Verify behavior of various kinds of breaks.
  28  * @compile --enable-preview -source ${jdk.version} ExpressionSwitchBreaks1.java
  29  * @run main/othervm --enable-preview ExpressionSwitchBreaks1
  30  */
  31 
  32 import java.util.Objects;
  33 import java.util.function.Supplier;
  34 
  35 public class ExpressionSwitchBreaks1 {
  36     public static void main(String... args) {
  37         new ExpressionSwitchBreaks1().run();
  38     }
  39 
  40     private void run() {
  41         check(print1(0, 0), "0-0");
  42         check(print1(0, 1), "0-1");
  43         check(print1(0, -1), "0-X");
  44         check(print1(-1, -1), "X");
  45         check(print2(0, 0, 0), "0-0-0");
  46         check(print2(0, 0, 1), "0-0-1");
  47         check(print2(0, 0, 2), "0-0-2");
  48         check(print2(0, 0, -1), "0-0-X");
  49         check(print2(0, 1, -1), "0-1");




   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /*
  25  * @test
  26  * @bug 8206986
  27  * @summary Verify behavior of various kinds of breaks.
  28  * @compile ExpressionSwitchBreaks1.java
  29  * @run main ExpressionSwitchBreaks1
  30  */
  31 
  32 import java.util.Objects;
  33 import java.util.function.Supplier;
  34 
  35 public class ExpressionSwitchBreaks1 {
  36     public static void main(String... args) {
  37         new ExpressionSwitchBreaks1().run();
  38     }
  39 
  40     private void run() {
  41         check(print1(0, 0), "0-0");
  42         check(print1(0, 1), "0-1");
  43         check(print1(0, -1), "0-X");
  44         check(print1(-1, -1), "X");
  45         check(print2(0, 0, 0), "0-0-0");
  46         check(print2(0, 0, 1), "0-0-1");
  47         check(print2(0, 0, 2), "0-0-2");
  48         check(print2(0, 0, -1), "0-0-X");
  49         check(print2(0, 1, -1), "0-1");


< prev index next >