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

nasa / trick / 27163446257

08 Jun 2026 08:00PM UTC coverage: 56.142% (-0.8%) from 56.933%
27163446257

push

github

web-flow
ci: Single file CI and style checks (#2125)

* Replace old ci checks with a single file `ci.yml`

* Update Makefile for code-coverage tests

* Add Java style check to ci

* Update Makefile

14685 of 26157 relevant lines covered (56.14%)

463574.94 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