Rayrun
← Back to QA Wiki

Definition of Code Coverage

Code coverage measures the extent of code that has been tested, assisting in evaluating the test suite's quality. It identifies areas not executed during testing and is a form of white box testing.

See also:

Thank you!
Was this helpful?

Questions about Code Coverage?

Basics and Importance

  • What is code coverage?

    Code coverage is a metric used to assess the extent to which source code is executed during testing. It quantifies the percentage of code that is covered by automated tests, providing insight into the areas of the codebase that have been tested and those that have not. This metric helps identify untested parts of the code, which could potentially harbor undetected bugs.

    To measure code coverage, tools are employed during test execution to monitor which lines of code, branches, and conditions are executed. Upon completion, a report is generated that highlights the covered and uncovered sections of code.

    Code coverage tools can be integrated into a continuous integration (CI) pipeline to automatically collect coverage data on each build. This integration ensures that coverage metrics are consistently monitored and can trigger alerts or fail the build if coverage falls below a certain threshold.

    When analyzing code coverage reports, it's crucial to focus on the uncovered areas and evaluate the risk they pose. Simply aiming for a high percentage of coverage can be misleading, as it does not guarantee the quality or effectiveness of tests.

    To effectively utilize code coverage, it's important to combine it with other quality metrics and testing practices. While it provides valuable information, it should not be the sole indicator of software quality. It's one piece of the puzzle in achieving a robust and reliable test automation strategy.

  • Why is code coverage important?

    Code coverage is crucial as it provides a quantitative measure of how much of the source code is executed during testing. This metric helps identify untested parts of the codebase, ensuring that potential defects are not overlooked. High code coverage implies a lower likelihood of undetected bugs and can lead to more robust software. However, it's important to complement code coverage with other quality metrics and testing practices to address its limitations and achieve a comprehensive testing strategy.

    To maintain and improve code coverage, regularly review and update tests to cover new code, refactor tests for efficiency, and remove obsolete tests for deprecated features. Avoid common pitfalls such as writing tests solely to increase coverage without asserting meaningful behavior, and remember that 100% coverage does not guarantee the absence of bugs.

    Code coverage is also a key factor in maintaining codebase quality over time. It can indicate the effectiveness of the test suite and highlight areas that may require additional testing or refactoring. By integrating code coverage tools into a continuous integration pipeline, teams can continuously monitor and address coverage gaps.

    In the context of test-driven development (TDD), code coverage can validate that new code is accompanied by corresponding tests, reinforcing the TDD cycle of writing a failing test, writing code to pass the test, and refactoring.

    Ultimately, code coverage should be used as a guide to enhance testing efforts, not as an absolute measure of software quality. It is one of many tools in a tester's arsenal to build confidence in the software's reliability.

  • What are the different types of code coverage?

    Different types of code coverage include:

    • Statement Coverage: Measures the percentage of executable statements in the code that have been executed.
    • Branch Coverage: Also known as decision coverage, it measures whether each possible branch from each decision point is executed.
    • Function Coverage: Ensures that every function or subroutine in the code has been called.
    • Condition Coverage: Verifies that each boolean sub-expression has been evaluated to both true and false.
    • Line Coverage: Similar to statement coverage, but measured based on lines of code executed.
    • Path Coverage: Measures whether all possible paths through a given part of the code have been followed, considering nested branches and loops.
    • Entry/Exit Coverage: Ensures that every possible call and return from each function is executed.
    • Loop Coverage: Ensures that loops are executed for zero iterations, one iteration, and more than one iteration.
    • Parameter Value Coverage: Tests all combinations of parameter values for parameterized methods.
    • Data Flow Coverage: Tracks the flow of data values through the variables of the program, ensuring that different value combinations are tested.

    Each type of coverage provides a different perspective on the test suite's effectiveness and can highlight different potential gaps in testing. Combining multiple coverage types can give a more comprehensive view of the code's test coverage.

  • How does code coverage contribute to software quality?

    Code coverage is a metric that can indirectly contribute to software quality by ensuring that a significant portion of the codebase is executed during testing. High code coverage can lead to the discovery of hidden bugs and edge cases that might not be found through manual testing alone. It encourages developers to write more comprehensive tests, which can lead to more robust and reliable software.

    However, code coverage should not be the sole measure of software quality. It does not guarantee the effectiveness of tests or the detection of all defects. Tests need to be well-designed and meaningful to truly enhance quality. Code coverage can sometimes lead to a false sense of security if the focus is on hitting a target percentage rather than on the quality of the test cases.

    In practice, code coverage can help maintain software quality by:

    • Identifying untested parts of the code, which can then be targeted for additional testing.
    • Preventing regression, as maintaining or increasing coverage over time ensures new code is tested.
    • Facilitating refactoring, since a well-covered codebase can be changed with more confidence that existing functionality won't break.

    To maximize the benefits of code coverage, it should be used in conjunction with other quality measures and testing practices. It's a tool to guide quality efforts, not an end goal. Quality is ultimately determined by the end-user experience, and code coverage is just one of many metrics that can help achieve a positive outcome.

  • What are the limitations of code coverage?

    Code coverage has several limitations that test automation engineers should be aware of:

    • False sense of security: High code coverage can lead to complacency, as it does not guarantee the absence of bugs or that all critical paths are tested.
    • Quality of tests: Coverage metrics do not assess the quality or effectiveness of the tests. Poorly written tests can execute code without asserting behavior correctly.
    • Unreachable code: Some code may be designed to handle edge cases that are extremely rare or impossible to simulate in a test environment.
    • Coverage for coverage's sake: The pursuit of higher coverage percentages can lead to writing unnecessary tests or testing trivial code, which does not add value.
    • Integration and system-wide issues: Code coverage typically measures unit test coverage and may not reflect issues that arise during integration or system-wide testing.
    • Performance: Collecting code coverage data can slow down test execution, which may impact continuous integration pipelines and developer productivity.
    • Maintenance: As codebases evolve, maintaining high code coverage can become increasingly difficult and time-consuming.

    It's important to complement code coverage with other quality assurance practices, such as manual testing, peer reviews, and static code analysis, to ensure a comprehensive testing strategy.

Measurement and Tools

  • How is code coverage measured?

    Code coverage is measured by monitoring which lines of code, branches, and conditions are executed during automated tests. This is typically done using specialized tools that instrument the codebase to track execution paths. When tests are run, these tools record which parts of the code are exercised by the tests.

    To set up code coverage measurement, you would:

    1. Choose a code coverage tool compatible with your programming language and test framework.
    2. Instrument your codebase, either manually or automatically, depending on the tool's capabilities.
    3. Run your test suite to execute the instrumented code.
    4. Generate a report that details the coverage metrics.

    The coverage report usually includes:

    • Percentage of code executed by the tests.
    • Highlighting of covered and uncovered code for visual inspection.
    • Breakdown of coverage by files, classes, or functions.

    For example, in JavaScript, you might use Istanbul (nyc) to measure coverage:

    nyc --reporter=html --reporter=text mocha

    This command runs the Mocha tests with Istanbul collecting coverage data, then generates HTML and text reports.

    Incorporating code coverage into a continuous integration (CI) pipeline involves adding steps to execute the coverage tool and report the results after the test suite runs. Some CI systems can enforce thresholds, failing the build if coverage falls below a specified percentage.

    Remember, while coverage metrics provide insights, they should be interpreted in the context of other quality indicators and testing practices.

  • What tools are commonly used to measure code coverage?

    Common tools used to measure code coverage include:

    • JaCoCo: A free Java code coverage library, integrates with Maven, Gradle, and Ant.
    • Cobertura: Another Java tool, it generates reports in HTML and XML formats.
    • Clover: A paid tool by Atlassian for Java and Groovy that offers detailed reporting.
    • Istanbul (nyc): A JavaScript code coverage tool that works well with Node.js and can integrate with continuous integration systems.
    • SimpleCov: For Ruby, it provides a powerful configuration set and can generate HTML reports.
    • gcov: A tool that comes with GCC (GNU Compiler Collection) for C and C++ languages.
    • OpenCover: A .NET framework tool that supports multiple testing frameworks.
    • dotCover: A .NET code coverage tool from JetBrains that integrates with ReSharper and Rider.
    • lcov: A graphical front-end for gcov, mainly used for C and C++.
    • Codecov: An online service that can process reports generated by many coverage tools and integrate with GitHub, Bitbucket, and GitLab.
    • Coveralls: Similar to Codecov, it works with a variety of programming languages and integrates with GitHub.

    These tools can be integrated into build scripts or continuous integration systems to automatically generate coverage reports during the build process. They often provide command-line interfaces and configuration files to customize their behavior. Reports typically include metrics like percentage of code covered, highlighting uncovered lines, and sometimes identifying potential redundant tests.

  • What are the differences between these tools?

    Different test automation tools offer varied features and are suited for specific testing needs. Here's a brief comparison:

    • Selenium: Open-source, supports multiple browsers and languages. Ideal for web application testing. Requires more setup and coding knowledge.
    WebDriver driver = new ChromeDriver();
    driver.get("http://example.com");
    • Cypress: JavaScript-based, more modern with a faster setup. Offers real-time reloads and automatic waiting. Mainly for web apps, with a focus on end-to-end testing.
    cy.visit('http://example.com');
    • Appium: Open-source tool for mobile app testing. Supports iOS and Android platforms. Similar to Selenium, it uses WebDriver protocol.
    driver.get("http://example.com");
    • TestComplete: Commercial tool with a GUI interface. Supports desktop, mobile, and web applications. Less coding required due to record-and-playback features.
    Sys.Desktop.Keys("Hello, World!");
    • JUnit/NUnit: Frameworks for unit testing in Java and .NET respectively. They are not full-fledged automation tools but are essential for test-driven development.
    assertEquals("Expected", actual);
    • Robot Framework: Keyword-driven tool that's easy to learn for non-programmers. Supports tabular data for test cases and integrates with Selenium.
    *** Test Cases ***
    Example
        Open Browser    http://example.com    Chrome
    • Jest: JavaScript testing framework with a focus on simplicity. Good for unit and integration tests in React applications.
    test('adds 1 + 2 to equal 3', () => {
      expect(sum(1, 2)).toBe(3);
    });

    Each tool has its strengths and weaknesses; the choice depends on project requirements, team skills, and the application under test.

  • How to integrate code coverage tools into a continuous integration pipeline?

    Integrating code coverage tools into a continuous integration (CI) pipeline involves several steps:

    1. Choose a code coverage tool compatible with your tech stack and CI system. Popular choices include JaCoCo for Java, Istanbul for JavaScript, and Coverage.py for Python.

    2. Install and configure the tool in your project. This typically involves adding the tool as a dependency and configuring it to monitor the correct files and directories.

    3. Update your test scripts to include the code coverage tool's commands. This ensures that coverage data is collected every time tests are run. For example, in a JavaScript project using Istanbul, you might update your npm test script:

      "scripts": {
          "test": "nyc mocha"
      }
    4. Modify your CI pipeline configuration to execute the updated test scripts. This can be done by editing the CI configuration file (e.g., .travis.yml, Jenkinsfile, gitlab-ci.yml) to include the test command.

    5. Add a step to publish coverage reports. After tests complete, use the code coverage tool to generate a report and then publish it to a service like Codecov, Coveralls, or SonarQube. This step often requires adding a token or API key to your CI environment variables for authentication.

    6. Set up notifications or fail conditions based on coverage thresholds. This can be done within the CI system or the coverage reporting service.

    7. Automate the process to run on every commit or pull request to ensure coverage is consistently tracked.

    By following these steps, code coverage data becomes an integral part of the CI process, providing continuous feedback on the quality of the test suite and the code it covers.

  • How to interpret code coverage reports?

    Interpreting code coverage reports involves analyzing the data to understand which parts of the codebase are exercised by tests. Look for key metrics such as line coverage, branch coverage, and function coverage. These metrics indicate the percentage of code lines, branches, and functions that have been executed during testing.

    Line Coverage: Check which lines of code are not executed at all. Uncovered lines may indicate critical missed test cases.

    Branch Coverage: Pay attention to conditional statements. Ensure that both the true and false branches have been tested. Missing branches could lead to undetected bugs.

    Function Coverage: Verify that all functions have been called. Untested functions are a risk for hidden defects.

    Gaps in coverage: Identify areas with low coverage and assess if they are critical to the application's functionality. Prioritize adding tests for these sections.

    Over-covered areas: Notice if trivial code (like getters and setters) is heavily tested while complex logic remains under-tested. Balance the test effort to focus on more error-prone areas.

    Coverage trends: Look at coverage over time. Declining coverage could indicate a lack of discipline in maintaining tests with new code changes.

    Integration with CI: Ensure that coverage reports are part of the Continuous Integration (CI) process to detect coverage changes with each build.

    Actionable insights: Use the report to create tasks for writing additional tests or refactoring code to make it more testable.

    Remember, while high coverage is desirable, it is not an absolute indicator of test quality. Coverage should be used in conjunction with other quality metrics and testing practices to ensure a robust and reliable software product.

Best Practices

  • What is a good code coverage percentage?

    A good code coverage percentage typically aims for 70-90%, but the ideal target can vary depending on the project's context and criticality. Striving for 100% coverage is often impractical and may not be cost-effective, as the effort to cover the last few percentages can be disproportionately high compared to the benefits gained.

    It's important to focus on covering critical paths and ensuring that the most important functionality is thoroughly tested. High coverage in complex, risk-prone areas is more valuable than blanket coverage that includes trivial or low-risk code.

    Remember that code coverage is just one metric in assessing test quality. It should be complemented with other testing practices and metrics to ensure a robust and maintainable codebase. Avoid the pitfall of writing tests just to increase coverage metrics without adding real value to the test suite's ability to catch regressions or bugs.

    In summary, aim for a high but realistic coverage percentage that prioritizes critical paths and complements other quality assurance measures.

  • How to increase code coverage?

    To increase code coverage, focus on identifying untested paths within your code. Begin by analyzing code coverage reports to pinpoint areas with low coverage. Prioritize writing additional tests for critical and complex parts of the application that may affect functionality if broken.

    Implement test-driven development (TDD), where tests are written before the code itself, ensuring that every new feature or bug fix starts with a test. This encourages writing testable code and can lead to higher coverage from the outset.

    Utilize parameterized tests to run the same test logic with different inputs, effectively covering more scenarios with less code. This is particularly useful for functions that handle a range of input values.

    Consider mocking external dependencies to test edge cases and error conditions that are difficult to reproduce in a real environment. Mocking can simulate various states of external systems, increasing the paths your tests can cover.

    Incorporate integration and end-to-end tests to cover the interactions between different parts of the application, which unit tests might miss.

    Regularly refactor tests to keep them efficient and effective. Refactoring can reveal redundant tests or inspire new tests that cover previously missed logic.

    Finally, promote a culture of collective code ownership where all team members are responsible for writing and maintaining tests. This ensures that different perspectives contribute to the test suite, potentially uncovering areas that need more coverage.

    // Example of a parameterized test in TypeScript using Jest
    describe.each([
      [1, 2, 3],
      [4, 5, 9],
      [-1, -2, -3]
    ])('add(%i, %i)', (a, b, expected) => {
      test(`returns ${expected}`, () => {
        expect(add(a, b)).toBe(expected);
      });
    });

    By strategically expanding your test suite and fostering a testing culture, you can effectively increase code coverage.

  • What are some best practices for achieving high code coverage?

    To achieve high code coverage, consider the following best practices:

    • Prioritize critical paths in your application, ensuring that the most important functionalities are thoroughly tested.
    • Write tests as you code to promote a test-driven development (TDD) approach, which naturally increases coverage.
    • Refactor code to make it more testable; modular, loosely-coupled code is easier to cover with tests.
    • Use mocks and stubs to isolate units of code, allowing for more thorough testing of individual components without external dependencies.
    • Integrate tests into your build process, so tests are run automatically, and coverage is checked with every change.
    • Set coverage goals and incrementally improve coverage; avoid aiming for 100% as it may not be cost-effective.
    • Review test cases regularly to ensure they are meaningful and not just inflating coverage metrics.
    • Avoid writing tests for trivial code unless it's part of a critical functionality; focus on complex logic that is more likely to contain bugs.
    • Leverage code coverage reports to identify untested paths and write additional tests to cover those areas.
    • Encourage collective ownership of the codebase and its test coverage, fostering a culture where all developers are responsible for quality.
    • Automate where possible, but remember that some areas might require manual testing; balance automation with exploratory testing.

    By following these practices, you can ensure that your efforts to increase code coverage translate into meaningful improvements in software quality.

  • How to maintain high code coverage over time?

    Maintaining high code coverage over time requires a disciplined approach and adherence to best practices. Here are some strategies:

    • Automate: Automate the execution of your test suite as part of your continuous integration (CI) process. This ensures tests are run regularly and coverage is consistently measured.

    • Monitor: Use dashboards to monitor coverage trends. Set up alerts for significant drops to catch issues early.

    • Refactor: Refactor tests when updating code to keep them aligned with the changes. This helps in avoiding obsolete tests and ensures that new code paths are covered.

    • Code Reviews: Incorporate code coverage checks into your peer review process. Require that new code submissions do not decrease coverage.

    • Test First: Adopt a test-driven development (TDD) approach where tests are written before the code, ensuring coverage from the start.

    • Prioritize: Focus on testing critical paths and functionalities first. High-risk areas should have the highest coverage.

    • Remove Dead Code: Regularly scan for and remove dead or unreachable code to prevent artificial inflation of coverage metrics.

    • Educate: Ensure the team understands the value of high code coverage and how to write effective tests.

    • Balance: Balance the pursuit of high coverage with the quality of tests. Avoid writing tests just to increase coverage percentages.

    • Update Thresholds: As the codebase grows, periodically reassess and update coverage thresholds to reflect the current state of the project.

    By implementing these strategies, you can ensure that high code coverage is maintained as your codebase evolves.

  • What are some common pitfalls to avoid when trying to increase code coverage?

    When increasing code coverage, avoid these common pitfalls:

    • Writing tests for the sake of metrics: Focus on meaningful tests rather than inflating coverage numbers with trivial or redundant tests.
    • Neglecting maintainability: Ensure tests are easy to understand and maintain. Complex tests can become a burden and may be ignored or removed over time.
    • Overlooking edge cases: High coverage does not guarantee all edge cases are tested. Prioritize tests that cover different input scenarios and error conditions.
    • Ignoring integration points: Don't just focus on unit tests. Ensure coverage extends to integration points where components interact.
    • Favoring quantity over quality: A few well-thought-out tests are better than many rushed, ineffective ones. Aim for tests that assert correct behavior.
    • Omitting negative tests: Test not only for expected outcomes but also for how the system handles failures or unexpected inputs.
    • Forgetting about non-functional aspects: Performance, security, and usability are also critical and should be covered by tests.
    • Becoming complacent: High coverage is not a one-time achievement. Continuously review and update tests as the codebase evolves.
    • Relying solely on coverage tools: Tools can miss scenarios that a thoughtful tester might catch. Use them as aids, not as the sole measure of test completeness.

    Remember, the goal is to create a robust and reliable test suite that supports the software's quality, not just to hit a coverage target.

Advanced Topics

  • What is branch coverage and how does it differ from statement coverage?

    Branch coverage is a metric that measures the percentage of executed branches in the control flow of a program. Unlike statement coverage, which simply checks whether each line of code has been executed, branch coverage requires that every possible route through a conditional statement is tested. This means that for an if-else statement, both the if branch and the else branch must be traversed by test cases to achieve full branch coverage.

    Here's an example in TypeScript to illustrate the difference:

    function exampleFunction(x: number) {
      if (x > 0) {
        console.log('Positive number');
      } else {
        console.log('Non-positive number');
      }
    }

    For statement coverage, you would need to run exampleFunction at least once to cover all the lines of code. However, for branch coverage, you would need to run it at least twice, with a positive number to cover the if branch and with a non-positive number to cover the else branch.

    Branch coverage is more thorough than statement coverage because it ensures that all the branches resulting from decisions in the code are tested, which can reveal logic errors that statement coverage might miss. However, it does not guarantee that all conditions within a compound decision have been individually evaluated, which is where condition coverage comes in.

  • What is condition coverage and how does it differ from branch coverage?

    Condition coverage, also known as predicate coverage, measures whether each individual boolean sub-expression within a decision in the code has been evaluated to both true and false. This differs from branch coverage, which focuses on ensuring that each possible branch (or path) that results from a decision point is executed at least once.

    For example, consider the following code snippet:

    if (a > 0 && b < 10) {
        // do something
    }

    Branch coverage would be satisfied if tests ensure that the entire if statement is evaluated to both true and false, which can be achieved with two tests: one where a > 0 && b < 10 is true, and another where it is false.

    Condition coverage, on the other hand, requires that each condition within the boolean expression is individually tested for both outcomes. In this case, four tests are needed:

    1. a > 0 is true, b < 10 is true.
    2. a > 0 is true, b < 10 is false.
    3. a > 0 is false, b < 10 is true.
    4. a > 0 is false, b < 10 is false.

    Condition coverage is more thorough than branch coverage because it examines the logical complexity within the branching conditions themselves, rather than just the paths through the code. However, achieving full condition coverage can require a significantly larger number of test cases, especially as the complexity of the conditions increases.

  • How does code coverage relate to other testing metrics like mutation testing?

    Code coverage and mutation testing are complementary metrics used to assess the effectiveness of a test suite. While code coverage measures the percentage of code executed by tests, mutation testing evaluates the quality of those tests by introducing changes, or mutations, to the codebase and checking if the tests detect these changes.

    Mutation testing involves creating many versions of the code, each with small modifications called mutants. A test suite is considered effective if it fails when a mutant is introduced, indicating it can detect the introduced faults. This process provides insight into the robustness of the test cases.

    In contrast, code coverage simply quantifies how much of the code is tested, without assessing the sensitivity of the tests to defects. High code coverage can give a false sense of security if the tests are not designed to assert the correct behavior thoroughly.

    Together, these metrics offer a more holistic view of test suite effectiveness. Code coverage can identify untested parts of the codebase, while mutation testing can highlight weaknesses in the test cases themselves. By using both metrics, engineers can not only ensure that all code paths are executed but also that the tests are capable of catching errors, leading to a more reliable and maintainable codebase.

    In practice, aiming for high code coverage is a good starting point, but complementing it with mutation testing ensures that the tests are not just covering the code but are also sensitive to potential defects.

  • What is the relationship between code coverage and test-driven development?

    The relationship between code coverage and Test-Driven Development (TDD) is intrinsic, as TDD inherently promotes higher code coverage. In TDD, tests are written before the production code, ensuring that every new feature starts with a corresponding test case. This approach naturally leads to the creation of tests for every new piece of code, which can significantly increase code coverage metrics.

    Furthermore, TDD encourages small, incremental changes and frequent refactoring, which can help maintain high code coverage over time. As developers add or modify code, they are prompted to update or add new tests, which reinforces the coverage of the codebase.

    However, it's important to note that while TDD can lead to high code coverage, it does not guarantee comprehensive testing. Code coverage is a quantitative measure, and high coverage numbers do not always equate to high-quality tests. TDD focuses on the functionality required by the system, and while it can result in thorough testing of new features, it may not address all edge cases or paths through the code.

    In summary, TDD and code coverage complement each other, with TDD providing a structured approach to ensure that most new code is covered by tests, while code coverage offers a metric to gauge the extent of testing. Both should be used judiciously, with an understanding that high code coverage is a means to an end, not the end itself.

  • How does code coverage affect the maintainability of a codebase?

    Code coverage can significantly impact the maintainability of a codebase. High code coverage generally indicates that more of the codebase is tested, which can lead to easier maintenance for several reasons:

    1. Refactoring Confidence: With a comprehensive suite of tests, developers can refactor code with confidence, knowing that tests will likely catch any introduced bugs.
    2. Documentation: Tests can serve as a form of documentation, showing how the code is supposed to behave. This can be invaluable for maintainers who are not familiar with the code.
    3. Design Quality: Striving for high code coverage can encourage better software design, as it's often easier to test well-designed, modular code. This can lead to a codebase that is easier to understand and maintain.
    4. Bug Detection: A well-tested codebase can help maintainers quickly identify and fix bugs, as tests can pinpoint the problematic areas of the code.

    However, it's important to note that code coverage is not a silver bullet. Blindly aiming for high coverage without considering the quality of tests can lead to a false sense of security. Tests should be meaningful and focus on critical paths and logic rather than simply increasing the coverage metric. Overly focusing on coverage can also lead to writing tests for trivial code, which adds maintenance overhead without much benefit.

    In summary, while code coverage can be a useful indicator of test thoroughness and can aid maintainability, it should be balanced with test quality and relevance to ensure a maintainable codebase.

TwitterGitHubLinkedIn
AboutQuestionsDiscord ForumBrowser ExtensionTagsQA Jobs

Rayrun is a community for QA engineers. I am constantly looking for new ways to add value to people learning Playwright and other browser automation frameworks. If you have feedback, email luc@ray.run.