package com.example.fuzzControll.service;

import com.example.fuzzControll.domain.bo.TestEntity;

import java.util.List;
import java.util.Map;

public interface GenerateMethodService {
    Map<String,List<String>> generation(TestEntity testEntity);
}