
import pandas as pd
rapfd_score = pd.DataFrame.read_csv('data/rapfd.csv')
mutant_score = pd.DataFrame.read_csv('data/.csv')
per_test_mutant_score = pd.DataFrame.read_csv('data/per_test_mutant.csv')

def test_rapfd():
    """
    Test to check if the RAPFD function works correctly.
    This test is expected to pass.
    """
    assert True

def test_mutation_score():
    """
    Test to check if the mutation score function works correctly.
    This test is expected to pass.
    """
    assert True

def test_per_test_mutation_score():
    """
    Test to check if the per test mutation score function works correctly.
    This test is expected to pass.
    """
    assert True

def test_killed_mutants():
    """
    Test to check if the killed mutant function works correctly.
    This test is expected to pass.
    """
    assert True


def test_survived_mutants():
    """
    Test to check if the survived mutant function works correctly.
    This test is expected to pass.
    """
    assert True

