Skip to content

Latest commit

 

History

History
44 lines (29 loc) · 659 Bytes

File metadata and controls

44 lines (29 loc) · 659 Bytes

How to Contribute

Clone the repository

git clone http://github.com/AlAskalany/ToDoly.git

Testing

Test your code using JUnit 5.

package com.alaskalany.todoly;

import org.junit.jupiter.api.AfterEach;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;

class ToDolyTestApplication {

    @BeforeEach
    void setUp() {
    }

    @AfterEach
    void tearDown() {
    }

    @Test
    void main() {
    }
}

Submitting Changes

Create a pull-request

Coding Conventions

Coding Style

Use the coding style associated with the project.