Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jcoderpaul/junitstudytwogenerics
JUnit framework simple tests in Generics (Simple Objects, Collections). Section cheat sheet. For memory!
https://github.com/jcoderpaul/junitstudytwogenerics
Last synced: 3 days ago
JSON representation
JUnit framework simple tests in Generics (Simple Objects, Collections). Section cheat sheet. For memory!
- Host: GitHub
- URL: https://github.com/jcoderpaul/junitstudytwogenerics
- Owner: JcoderPaul
- Created: 2022-12-08T15:47:01.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2022-12-09T18:38:04.000Z (almost 2 years ago)
- Last Synced: 2023-06-14T20:35:43.534Z (over 1 year ago)
- Language: Java
- Size: 53.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: ReadMe.md
Awesome Lists containing this project
README
### *** Тестирование программ при помощи JUnit ч.2 ***
В данном разделе приведены примеры простых реализаций
коллекций ArrayList, HashSet, HashMap с использованием
Generic-ов. Каждая коллекция покрывается тестами на
базе фреймворка Junit4. А так же более простые примеры
использования параметризированных классов и их
взаимодействие.В данном разделе содержаться:
- [JunitAndGenericsTaskOne](https://github.com/JcoderPaul/JunitStudyTwoGenerics/tree/master/JunitAndGenericsTaskOne) - приведен пример создания и использования класса содержащего
три параметра, так же приведен тестирующий метод для подобной конструкции;
- [JunitAndGenericsTaskTwo](https://github.com/JcoderPaul/JunitStudyTwoGenerics/tree/master/JunitAndGenericsTaskTwo) - полностью расписаны в универсальном виде, наши самописные коллекции, созданные в [прошлом разделе](https://github.com/JcoderPaul/JunitStudy) исключительно под конкретные классы;
- [JunitAndGenericsTaskTree](https://github.com/JcoderPaul/JunitStudyTwoGenerics/tree/master/JunitAndGenericsTaskTree) - приведен пример взаимодействия 'родителей' и 'наследников' при использовании Generic - ов.Более подробно тема Generic - ов рассмотрена в другом разделе [JavaExtended-1-6](https://github.com/JcoderPaul/JavaExtended-1-6):
- [Less_2_OOP_GenericsClasses](https://github.com/JcoderPaul/JavaExtended-1-6/tree/master/Less_2_OOP_GenericsClasses/src/Less_2_OOP_GenericsClasses) - создание параметризированных классов с несколькими параметрами;
- [Less_5_OOP_GenericsMethods](https://github.com/JcoderPaul/JavaExtended-1-6/tree/master/Less_5_OOP_GenericsMethods/src/Less_5_OOP_GenericsMethods) - методы демонстрируют механику похожую на описанную в разделе [JunitAndGenericsTaskTree](https://github.com/JcoderPaul/JunitStudyTwoGenerics/tree/master/JunitAndGenericsTaskTree);
- [Less_6_OOP_GenericsWildCard](https://github.com/JcoderPaul/JavaExtended-1-6/tree/master/Less_6_OOP_GenericsWildCard/src/Less_6_OOP_GenericsWildCard) - примеры работы с wildcard;Также см.
- [Документация по Junit5 (ENG)](https://junit.org/junit5/docs/current/user-guide/);
- [GitHub команды разработчиков Junit](https://github.com/junit-team/junit5/);