Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

oliver: documentation #55

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Tests/TestBasicArray.m
Original file line number Diff line number Diff line change
Expand Up @@ -67,4 +67,4 @@ function tearDown(self)
delete([self.fit.model.id '*']);
end
end
end
end
4 changes: 2 additions & 2 deletions Tests/TestBasicMatrix.m
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
% xUnit framework required
% http://www.mathworks.com/matlabcentral/fileexchange/22846-matlab-xunit-test-framework
% https://github.com/psexton/matlab-xunit

% REF:
% https://github.com/stan-dev/pystan/blob/develop/pystan/tests/test_basic_matrix.py
Expand Down Expand Up @@ -51,4 +51,4 @@ function tearDown(self)
delete([self.fit.model.id '*']);
end
end
end
end
4 changes: 2 additions & 2 deletions Tests/TestBernoulli.m
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
% xUnit framework required
% http://www.mathworks.com/matlabcentral/fileexchange/22846-matlab-xunit-test-framework
% https://github.com/psexton/matlab-xunit

% REF:
% https://github.com/stan-dev/pystan/blob/develop/pystan/tests/test_basic.py
Expand Down Expand Up @@ -118,4 +118,4 @@ function tearDown(self)
end
end

end
end
4 changes: 2 additions & 2 deletions Tests/TestExtract.m
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
% xUnit framework required
% http://www.mathworks.com/matlabcentral/fileexchange/22846-matlab-xunit-test-framework
% https://github.com/psexton/matlab-xunit

% REF:
% https://github.com/stan-dev/pystan/blob/develop/pystan/tests/test_extract.py
Expand Down Expand Up @@ -89,4 +89,4 @@ function tearDown(self)
end
end

end
end
2 changes: 1 addition & 1 deletion Tests/TestMCMC.m
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
% xUnit framework required
% http://www.mathworks.com/matlabcentral/fileexchange/22846-matlab-xunit-test-framework
% https://github.com/psexton/matlab-xunit

classdef TestMCMC < TestCase
properties
Expand Down
4 changes: 2 additions & 2 deletions Tests/TestNormal.m
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
% xUnit framework required
% http://www.mathworks.com/matlabcentral/fileexchange/22846-matlab-xunit-test-framework
% https://github.com/psexton/matlab-xunit

% REF:
% https://github.com/stan-dev/pystan/blob/develop/pystan/tests/test_rstan_getting_started.py
Expand Down Expand Up @@ -43,4 +43,4 @@ function tearDown(self)
delete([self.model.id '*output*']);
end
end
end
end
4 changes: 2 additions & 2 deletions Tests/TestOptim.m
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
% xUnit framework required
% http://www.mathworks.com/matlabcentral/fileexchange/22846-matlab-xunit-test-framework
% https://github.com/psexton/matlab-xunit

% REF:
classdef TestOptim < TestCase
Expand Down Expand Up @@ -70,4 +70,4 @@ function tearDown(self)
end
end

end
end
2 changes: 1 addition & 1 deletion Tests/TestRstanGettingStarted.m
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
% xUnit framework required
% http://www.mathworks.com/matlabcentral/fileexchange/22846-matlab-xunit-test-framework
% https://github.com/psexton/matlab-xunit

% REF:
% https://github.com/stan-dev/pystan/blob/develop/pystan/tests/test_rstan_getting_started.py
Expand Down
2 changes: 1 addition & 1 deletion Tests/TestStanModel.m
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
% xUnit framework required
% http://www.mathworks.com/matlabcentral/fileexchange/22846-matlab-xunit-test-framework
% https://github.com/psexton/matlab-xunit

classdef TestStanModel < TestCase
properties
Expand Down
6 changes: 3 additions & 3 deletions Tests/run_all_tests.m
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
% The tests in this directory were written for Steve Eddin's xUnit test framework:
%
% http://www.mathworks.com/matlabcentral/fileexchange/22846-matlab-xunit-test-framework
% https://github.com/psexton/matlab-xunit
%
% All the tests in this directory can be run by just calling 'runtests'.
% All the tests in this directory can be run by just calling 'runxunit'.
% However, it seems that occasionally, some older versions of Matlab will
% produce errors that are actually not relevant under normal circumstances.
% This script introduces some pauses that prevent these errors.
%
% Individual tests can be run by calling 'runtests TestCase' where TestCase
% Individual tests can be run by calling 'runxunit TestCase' where TestCase
% is the name of one of the particular tests.

t = 30;
Expand Down