Skip to content

Commit 2673609

Browse files
author
zihluwang
committed
test: test not implemented exception
1 parent bbf73d7 commit 2673609

File tree

1 file changed

+44
-0
lines changed

1 file changed

+44
-0
lines changed
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
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

Comments
 (0)