|
| 1 | +/* |
| 2 | + * Copyright (C) 2024-2024 OnixByte. |
| 3 | + * |
| 4 | + * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | + * you may not use this file except in compliance with the License. |
| 6 | + * You may obtain a copy of the License at |
| 7 | + * |
| 8 | + * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | + * |
| 10 | + * Unless required by applicable law or agreed to in writing, software |
| 11 | + * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | + * |
| 14 | + * See the License for the specific language governing permissions and |
| 15 | + * limitations under the License. |
| 16 | + */ |
| 17 | + |
| 18 | +package com.onixbyte.devkit.core.exceptions; |
| 19 | + |
| 20 | +import lombok.extern.slf4j.Slf4j; |
| 21 | +import org.junit.jupiter.api.Test; |
| 22 | + |
| 23 | +@Slf4j |
| 24 | +public class NotImplementationExceptionTest { |
| 25 | + |
| 26 | + @Test |
| 27 | + public void testExceptionWithEmptyConstructor() { |
| 28 | + try { |
| 29 | + throw new NotImplementedException(); |
| 30 | + } catch (NotImplementedException e) { |
| 31 | + log.error("NotImplementedException: ", e); |
| 32 | + } |
| 33 | + } |
| 34 | + |
| 35 | + @Test |
| 36 | + public void testExceptionWithStringConstructor() { |
| 37 | + try { |
| 38 | + throw new NotImplementedException("This function is not implemented yet, please contact developer for further information."); |
| 39 | + } catch (NotImplementedException e) { |
| 40 | + log.error("NotImplementedException: ", e); |
| 41 | + } |
| 42 | + } |
| 43 | + |
| 44 | +} |
0 commit comments