MCPcopy Create free account
hub / github.com/OpenGene/fastplong / TEST

Function TEST

test/sequence_test.cpp:4–9  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2#include "../src/sequence.h"
3
4TEST(SequenceTests, reverse) {
5 Sequence s(new string("AAAATTTTCCCCGGGG"));
6 Sequence rc = ~s;
7 EXPECT_EQ(*s.mStr, "AAAATTTTCCCCGGGG");
8 EXPECT_EQ(*rc.mStr, "CCCCGGGGAAAATTTT");
9}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected