forked from pennyliang/MachineLearning-C---code
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathunit_all.cpp
More file actions
Latest commit
23 lines (19 loc) · 521 Bytes
/
Copy pathunit_all.cpp
File metadata and controls
23 lines (19 loc) · 521 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include<stdio.h>
#include"gtest/gtest.h"
#include"andrewng-problem-set3/regulation.h"
#include"andrewng-problem-set1/lwlr.h"
TEST( HW,andrewng_problem_set1 )
{
lwlr("./andrewng-problem-set1/q2x.dat","andrewng-problem-set1/q2y.dat");
EXPECT_TRUE( true );
}
TEST( HW,andrewng_problem_set3 )
{
progress("./andrewng-problem-set3/x.dat","andrewng-problem-set3/y.dat");
EXPECT_TRUE( true );
}
intmain(int argc, char** argv)
{
testing::InitGoogleTest(&argc, argv);
returnRUN_ALL_TESTS();
}