• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

nasa / trick / 25456501308

06 May 2026 07:29PM UTC coverage: 55.935% (-0.8%) from 56.7%
25456501308

Pull #2011

github

web-flow
Merge 7ad262960 into 7054e405e
Pull Request #2011: Single-file CI and code style adoption

14612 of 26123 relevant lines covered (55.94%)

462107.16 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

14.29
/trick_source/sim_services/ExternalApplications/StripChart.cpp
1

2
#include <string>
3

4
#include "trick/StripChart.hh"
5
#include "trick/ExternalApplicationManager.hh"
6

7
Trick::StripChart::StripChart() {
187✔
8
    command += std::string("trick-stripchart");
187✔
9
    file_set = false;
187✔
10
}
187✔
11

12
void Trick::StripChart::set_arguments(std::string args) {
×
13
    ExternalApplication::set_arguments(args);
×
14
    file_set = false;
×
15
}
×
16

17
std::string Trick::StripChart::create_arguments_string() {
×
18
    ExternalApplication::create_arguments_string();
×
19

20
    std::ostringstream oss;
×
21

22
    if (host_source != NONE) {
×
23
        oss << " " << host;
×
24
    }
25

26
    if (port_source != NONE) {
×
27
        oss << " " << port;
×
28
    }
29

30
    if (file_set) {
×
31
        oss << " -input " << input_file;
×
32
    }
33

34
    return oss.str();
×
35
}
×
36

37
void Trick::StripChart::set_input_file(std::string filename) {
×
38
    if (!filename.empty()) {
×
39
        file_set = true;
×
40
        input_file = filename;
×
41

42
        //! Ensure this application is on the queue.
43
        Trick::add_external_application(*this);
×
44
    }
45
    else {
46
        file_set = false;
×
47
    }
48
}
×
49

50
std::string Trick::StripChart::get_input_file() {
×
51
    return input_file;
×
52
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc