Skip to content
Snippets Groups Projects
CartControllerIntegrationTest.java 391 B
Newer Older
package com.example.freshonline.controller;

import org.junit.jupiter.api.Test;

import static org.junit.jupiter.api.Assertions.*;

class CartControllerIntegrationTest {

    @Test
    void getCartGood() {
    }

    @Test
    void getCartGoods() {
    }

    @Test
    void addCartEntry() {
    }

    @Test
    void updateCartEntry() {
    }

    @Test
    void deleteCartEntry() {
    }
}