Pinned Repositories
19-Abgabe03-Julia-Trummer
First steps in JUnit. Implementing testcases for Claculator, Stack and Distance.
autopep8
A tool that automatically formats Python code to conform to the PEP 8 style guide.
awesome-mutation-testing
Mutation testing resources.
casadocodigo_desbravandoJavaOrientacaoObjetos
Implementação do projeto prático referente ao livro Desbravando Java e Orientação a Objetos da editora Casa do Codigo
compilador
Trabalho da disciplina de compiladores.
controle_academico_clp
Trabalho da disciplina Conceitos de Linguagens de Programação
curso_design_patterns_java_I
Curso Design Patterns Java I: Boas práticas de programação (Alura)
curso_design_patterns_java_II
Curso Design Patterns Java II: Boas praticas de programação (Alura)
curso_java_reflection_parte_1
Curso Java Reflection parte 1: Entendendo a metaprogramação (Alura)
ricardosm's Repositories
ricardosm/19-Abgabe03-Julia-Trummer
First steps in JUnit. Implementing testcases for Claculator, Stack and Distance.
ricardosm/autopep8
A tool that automatically formats Python code to conform to the PEP 8 style guide.
ricardosm/awesome-mutation-testing
Mutation testing resources.
ricardosm/controle_academico_clp
Trabalho da disciplina Conceitos de Linguagens de Programação
ricardosm/curso_design_patterns_java_I
Curso Design Patterns Java I: Boas práticas de programação (Alura)
ricardosm/curso_design_patterns_java_II
Curso Design Patterns Java II: Boas praticas de programação (Alura)
ricardosm/curso_java_reflection_parte_1
Curso Java Reflection parte 1: Entendendo a metaprogramação (Alura)
ricardosm/curso_java_reflection_parte_2
Curso Java Reflection parte 2: Anotações e Injeção de Dependências (Alura)
ricardosm/design-patterns
Java design patterns examples with unit tests
ricardosm/dp-assignment-decorator-pattern
Design Pattern Assignment... With JUnit TestCase for SQAT assignment
ricardosm/experiment_ml_test
ricardosm/fpp-lab2.6
Programming Assignment 2-6 Create a Java class called Prog6 and a JUnit Test Case called TestProg6. Follow the instructions in Lecture 1 to create a JUnit Test Case. Create a static method inside Prog6 called removeDups, which accepts an array of Strings as its only argument. When the method is called, it creates a new array in which all duplicate Strings in the original input array have been removed. This new array is then returned. For example, if the input array is ["horse", "dog", "cat", "horse","dog"] then the output would be the following array: ["horse","dog","cat"] You will test your method removeDups in your class TestProg6. In that class, create a method called testRemoveDups, with void return type and no arguments. This method should pass in some array (hard-coded array is fine) to the removeDups method. For instance, you could store the sample input array described above in a variable String[] testData; To pass testData into removeDups, perform this call: String[] result = Prog6.removeDups(testData); After the call, the variable result should contain an array of Strings without duplicates, and each of these Strings should be an element of the original input array. Verify that both these things are true. Use the JUnit function assertTrue to do tests. NOTE: You must not use any "advanced" data structures to solve this problem – such as implementors of Java's Set interface (like HashSet and TreeSet).
ricardosm/how-to-specify-it
"How to Specify it" in Java and jqwik
ricardosm/hypothesis
Hypothesis is a powerful, flexible, and easy to use library for property-based testing.
ricardosm/IT-Books
IT, Programming & Computer science books
ricardosm/Java
All Algorithms implemented in Java
ricardosm/JUnit-Examples
Java test cases
ricardosm/JunitTestcases
ricardosm/JunitTestcases-1
Learing pratice for wirting junit testcase in Java
ricardosm/learn-property-based-testing
✨Learn how to write property-based tests in your Elixir/Phoenix Apps to comprehensively and reliably test!
ricardosm/LittleDarwin
Java Mutation Testing Framework Written in Python
ricardosm/MapaInterativoJS
Mapa Interativo do Brasil separado por Estados em Javascript, utilizando a biblioteca open-source Geo Charts da Google
ricardosm/NameExtractor
This was a group project for CS350 (Software Engineering ), the program is supposed to be able to extract personal from a string, to do this the program needs to use several dictionaries, gazeteers, shingling(looking at a word to the left and right from a given position in a sentence), of words, among other things to return where a name is found in a block of text and place a tag around the name. Example: somebody named <PER>NAME HERE </PER> went to... We used the Gradle build system, communicated virtualy through Google Hangouts 4 or 5 times a week. We wrote test cases before developing code. Using JUnit tests.
ricardosm/playframework
Play Framework
ricardosm/programming-books-and-resources
:book: Collection of programming related books & their frameworks.
ricardosm/ProgrammingBooks
Programming PDF Books
ricardosm/spring-framework
Spring Framework
ricardosm/tp1_banco_de_dados_provas
ricardosm/tp_bioinspirados
Distribuição de seções eleitorais
ricardosm/vraptor4
A web MVC action-based framework, on top of CDI, for fast and maintainable Java development.