https://github.com/amirziyacode/morse-code
This program is designed for encrypting and translating Morse code.
https://github.com/amirziyacode/morse-code
java java8 maven morsecode morsecode-translator
Last synced: 3 months ago
JSON representation
This program is designed for encrypting and translating Morse code.
- Host: GitHub
- URL: https://github.com/amirziyacode/morse-code
- Owner: amirziyacode
- Created: 2024-09-05T13:47:39.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-09-21T14:44:35.000Z (8 months ago)
- Last Synced: 2025-01-22T21:32:41.483Z (4 months ago)
- Topics: java, java8, maven, morsecode, morsecode-translator
- Language: Java
- Homepage: https://www.java.com/en/
- Size: 49.8 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README

[](https://github.com/amirziyacode)
[](https://github.com/amirziyacode?tab=repositories)## MorseCode
for Decode && Endcode your massage :)
## SetUP!
Go to the scr/java/main/org.amirziya
Run F6 to running App
```JAVA
public interface InternationMorse {
String Encode(String word);
String Decode(String word);
}```

## Development
I use Maven and two packages for Testing
- [assertJ](https://mvnrepository.com/artifact/org.assertj/assertj-core)
- [Junit](https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-api)```
@TestCheck_Encode_Data_of_A_B()
Check_Encode_Data_of_hello()
check_Decode_Data_of_A_B()
check_Decode_Data_of_Hello()
```
## Test